MANIFEST.in
README.md
pyproject.toml
setup.py
appcraft/__init__.py
appcraft.egg-info/PKG-INFO
appcraft.egg-info/SOURCES.txt
appcraft.egg-info/dependency_links.txt
appcraft.egg-info/entry_points.txt
appcraft.egg-info/requires.txt
appcraft.egg-info/top_level.txt
appcraft/scripts/__init__.py
appcraft/scripts/add_template.py
appcraft/scripts/cli.py
appcraft/scripts/create_init.py
appcraft/scripts/create_runner.py
appcraft/scripts/list_templates.py
appcraft/scripts/project_init.py
appcraft/templates/template_abc.py
appcraft/templates/template_manager.py
appcraft/templates/base/__init__.py
appcraft/templates/base/files/Pipfile
appcraft/templates/base/files/README.md
appcraft/templates/base/files/run
appcraft/templates/base/files/run_tools
appcraft/templates/base/files/application/dtos/app_dto.py
appcraft/templates/base/files/application/dtos/user_dto.py
appcraft/templates/base/files/application/dtos/interfaces/__init__.py
appcraft/templates/base/files/application/mappers/app_mapper.py
appcraft/templates/base/files/application/mappers/user_mapper.py
appcraft/templates/base/files/application/mappers/interfaces/__init__.py
appcraft/templates/base/files/application/services/app_service.py
appcraft/templates/base/files/application/services/user_service.py
appcraft/templates/base/files/application/services/interfaces/__init__.py
appcraft/templates/base/files/config/app.toml
appcraft/templates/base/files/config/theme.json
appcraft/templates/base/files/docs/Makefile
appcraft/templates/base/files/docs/make.bat
appcraft/templates/base/files/docs/source/conf.py
appcraft/templates/base/files/docs/source/index.rst
appcraft/templates/base/files/docs/source/modules.rst
appcraft/templates/base/files/domain/filters/__init__.py
appcraft/templates/base/files/domain/interfaces/repositories/__init__.py
appcraft/templates/base/files/domain/interfaces/repositories/user_repository.py
appcraft/templates/base/files/domain/models/app.py
appcraft/templates/base/files/domain/models/user.py
appcraft/templates/base/files/domain/models/exceptions/__init__.py
appcraft/templates/base/files/domain/models/exceptions/user_model_not_found.py
appcraft/templates/base/files/domain/models/inspector/__init__.py
appcraft/templates/base/files/domain/models/interfaces/__init__.py
appcraft/templates/base/files/domain/value_objects/id.py
appcraft/templates/base/files/domain/value_objects/username.py
appcraft/templates/base/files/domain/value_objects/converters/type_conversor.py
appcraft/templates/base/files/domain/value_objects/exceptions/__init__.py
appcraft/templates/base/files/domain/value_objects/interfaces/__init__.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/__init__.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/app_manager.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/app_runner.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/core_printer.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/error_handler.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/initializer.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/runner.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/config/__init__.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/config/base.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/config/env.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/config/json.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/config/toml.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/package_manager/__init__.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/package_manager/package_manager.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/package_manager/package_manager_abc.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/package_manager/pip_manager.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/package_manager/pipenv_manager.py
appcraft/templates/base/files/infrastructure/framework/appcraft/core/package_manager/poetry_manager.py
appcraft/templates/base/files/infrastructure/framework/appcraft/templates/templates.json
appcraft/templates/base/files/infrastructure/framework/appcraft/utils/color.py
appcraft/templates/base/files/infrastructure/framework/appcraft/utils/component_printer.py
appcraft/templates/base/files/infrastructure/framework/appcraft/utils/import_manager.py
appcraft/templates/base/files/infrastructure/framework/appcraft/utils/printer.py
appcraft/templates/base/files/infrastructure/interfaces/adapter.py
appcraft/templates/base/files/infrastructure/memory/adapters/app_adapter.py
appcraft/templates/base/files/infrastructure/memory/adapters/memory_adapter.py
appcraft/templates/base/files/infrastructure/memory/adapters/interfaces/app_adapter_interface.py
appcraft/templates/base/files/infrastructure/repositories/user_repository.py
appcraft/templates/base/files/presentation/cli/app_cli_presentation.py
appcraft/templates/base/files/presentation/cli/user_cli_presentation.py
appcraft/templates/base/files/presentation/cli/validator/input_validator.py
appcraft/templates/base/files/presentation/exceptions/input_exception.py
appcraft/templates/base/files/runners/main/app.py
appcraft/templates/base/files/runners/main/user.py
appcraft/templates/base/files/runners/tools/app.py
appcraft/templates/ci_cd/__init__.py
appcraft/templates/ci_cd/files/Pipfile
appcraft/templates/ci_cd/files/.github/workflows/ci.yml
appcraft/templates/ci_cd/files/.github/workflows/deploy.yml
appcraft/templates/ci_cd/files/config/ci_cd.toml
appcraft/templates/ci_cd/files/docs/Makefile
appcraft/templates/ci_cd/files/docs/make.bat
appcraft/templates/ci_cd/files/docs/source/conf.py
appcraft/templates/ci_cd/files/docs/source/index.rst
appcraft/templates/ci_cd/files/docs/source/modules.rst
appcraft/templates/ci_cd/files/infrastructure/adapters/deploy_adapter_protocol.py
appcraft/templates/ci_cd/files/runners/main/deploy.py
appcraft/templates/data_analysis/__init__.py
appcraft/templates/data_analysis/files/Pipfile
appcraft/templates/data_analysis/files/config/data_analysis.toml
appcraft/templates/data_analysis/files/docs/Makefile
appcraft/templates/data_analysis/files/docs/make.bat
appcraft/templates/data_analysis/files/docs/source/conf.py
appcraft/templates/data_analysis/files/docs/source/index.rst
appcraft/templates/data_analysis/files/docs/source/modules.rst
appcraft/templates/data_analysis/files/domain/models/data_analysis.py
appcraft/templates/data_analysis/files/infrastructure/adapters/file_adapter_protocol.py
appcraft/templates/data_visualization/__init__.py
appcraft/templates/data_visualization/files/config/data_visualization.toml
appcraft/templates/data_visualization/files/docs/Makefile
appcraft/templates/data_visualization/files/docs/make.bat
appcraft/templates/data_visualization/files/docs/source/conf.py
appcraft/templates/data_visualization/files/docs/source/index.rst
appcraft/templates/data_visualization/files/docs/source/modules.rst
appcraft/templates/data_visualization/files/domain/models/charts.py
appcraft/templates/data_visualization/files/infrastructure/adapters/file_adapter_protocol.py
appcraft/templates/docker/__init__.py
appcraft/templates/docker/files/infrastructure/docker/.dockerignore
appcraft/templates/docker/files/infrastructure/docker/Dockerfile
appcraft/templates/docker/files/infrastructure/docker/docker-compose.yml
appcraft/templates/docker/files/runners/main/docker.py
appcraft/templates/flask/files/app/pages/__init__.py
appcraft/templates/flask/files/app/pages/views.py
appcraft/templates/flask/files/app/pages/static/404.html
appcraft/templates/flask/files/app/pages/static/index.html
appcraft/templates/flask/files/app/templates/about.html
appcraft/templates/flask/files/app/templates/components/base.html
appcraft/templates/flask/files/app/templates/components/footer.html
appcraft/templates/flask/files/app/templates/components/header.html
appcraft/templates/flask/files/config/flask.toml
appcraft/templates/flask/files/flask/app.py
appcraft/templates/flask/files/flask/routes.py
appcraft/templates/flask/files/scripts/server.py
appcraft/templates/flask_api/__init__.py
appcraft/templates/flask_api/files/Pipfile
appcraft/templates/flask_api/files/infrastructure/framework/flask/app.py
appcraft/templates/flask_api/files/infrastructure/framework/flask/routes.py
appcraft/templates/flask_ui/__init__.py
appcraft/templates/flask_ui/files/Pipfile
appcraft/templates/flask_ui/files/infrastructure/framework/flask/app.py
appcraft/templates/flask_ui/files/infrastructure/framework/flask/injector.py
appcraft/templates/flask_ui/files/infrastructure/framework/flask/router.py
appcraft/templates/flask_ui/files/infrastructure/framework/flask/sqlalchemy.py
appcraft/templates/flask_ui/files/presentation/web/ui/static/css/main.css
appcraft/templates/flask_ui/files/presentation/web/ui/static/js/main.js
appcraft/templates/flask_ui/files/presentation/web/ui/templates/pages/index.html
appcraft/templates/flask_ui/files/presentation/web/ui/templates/views/app.html
appcraft/templates/flask_ui/files/presentation/web/ui/views/app.py
appcraft/templates/flask_ui/files/runners/main/flask.py
appcraft/templates/git/__init__.py
appcraft/templates/git/files/runners/tools/remote_repository.py
appcraft/templates/graphql/__init__.py
appcraft/templates/locales/__init__.py
appcraft/templates/locales/files/Pipfile
appcraft/templates/locales/files/infrastructure/framework/appcraft/utils/message_manager.py
appcraft/templates/locales/files/locale/en/LC_MESSAGES/about.mo
appcraft/templates/locales/files/locale/en/LC_MESSAGES/about.po
appcraft/templates/locales/files/locale/en/LC_MESSAGES/app.mo
appcraft/templates/locales/files/locale/en/LC_MESSAGES/app.po
appcraft/templates/locales/files/locale/en/LC_MESSAGES/core.mo
appcraft/templates/locales/files/locale/en/LC_MESSAGES/core.po
appcraft/templates/locales/files/locale/en/LC_MESSAGES/database.mo
appcraft/templates/locales/files/locale/en/LC_MESSAGES/database.po
appcraft/templates/locales/files/locale/pt_BR/LC_MESSAGES/app.mo
appcraft/templates/locales/files/locale/pt_BR/LC_MESSAGES/app.po
appcraft/templates/locales/files/locale/pt_BR/LC_MESSAGES/core.mo
appcraft/templates/locales/files/locale/pt_BR/LC_MESSAGES/core.po
appcraft/templates/locales/files/locale/pt_BR/LC_MESSAGES/database.mo
appcraft/templates/locales/files/locale/pt_BR/LC_MESSAGES/database.po
appcraft/templates/locales/files/locale/pt_BR/LC_MESSAGES/my_app.mo
appcraft/templates/locales/files/locale/pt_BR/LC_MESSAGES/my_app.po
appcraft/templates/logs/__init__.py
appcraft/templates/logs/files/Pipfile
appcraft/templates/logs/files/infrastructure/framework/appcraft/utils/logger.py
appcraft/templates/machine_learning/__init__.py
appcraft/templates/machine_learning/files/Pipfile
appcraft/templates/mongodb/__init__.py
appcraft/templates/mongodb/files/Pipfile
appcraft/templates/rabbitmq/__init__.py
appcraft/templates/selenium/__init__.py
appcraft/templates/selenium/files/app/open_google.py
appcraft/templates/selenium/files/config/browser.toml
appcraft/templates/selenium/files/core/browser.py
appcraft/templates/selenium/files/services/browser/google.py
appcraft/templates/sqlalchemy/__init__.py
appcraft/templates/sqlalchemy/files/Pipfile
appcraft/templates/sqlalchemy/files/application/services/database_service.py
appcraft/templates/sqlalchemy/files/config/database.toml
appcraft/templates/sqlalchemy/files/domain/adapters/db_adapter_interface.py
appcraft/templates/sqlalchemy/files/domain/models/app.py
appcraft/templates/sqlalchemy/files/domain/models/user.py
appcraft/templates/sqlalchemy/files/infrastructure/database/adapters/sqlalchemy_adapter.py
appcraft/templates/sqlalchemy/files/infrastructure/database/sqlalchemy/models/app_db.py
appcraft/templates/sqlalchemy/files/infrastructure/database/sqlalchemy/models/base.py
appcraft/templates/sqlalchemy/files/infrastructure/database/sqlalchemy/models/user_db.py
appcraft/templates/sqlalchemy/files/infrastructure/database/sqlalchemy/repositories/app_repository.py
appcraft/templates/sqlalchemy/files/infrastructure/database/sqlalchemy/repositories/user_repository.py
appcraft/templates/sqlalchemy/files/presentation/cli/database_cli_presentation.py
appcraft/templates/sqlalchemy/files/runners/main/app.py
appcraft/templates/sqlalchemy/files/runners/main/database.py
appcraft/templates/sqlalchemy/files/runners/tools/app.py
appcraft/templates/tests/__init__.py
appcraft/templates/tests/pyproject.toml
appcraft/templates/tests/files/Pipfile
appcraft/templates/web_scrapping/__init__.py
appcraft/templates/web_scrapping/files/Pipfile
appcraft/templates/websockets/__init__.py
appcraft/templates/websockets/files/Pipfile
appcraft/utils/__init__.py
appcraft/utils/files.py
appcraft/utils/template_adder.py
appcraft/utils/template_loader.py