.gitignore
.python-version
CONTRIBUTE.md
LICENSE
README.md
pyproject.toml
version.py
pytemplate/__init__.py
pytemplate/main.py
pytemplate/../templates/fastapi-template/cookiecutter.json
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/Dockerfile
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/Makefile
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/README.md
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/pyproject.toml
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.envfile}}
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/tests/__init__.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/tests/conftest.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/tests/test_cli.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/tests/test_example.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__init__.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/cli.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/db.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/main.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/models.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__pycache__/__init__.cpython-311.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__pycache__/db.cpython-311.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__pycache__/main.cpython-311.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__pycache__/models.cpython-311.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__pycache__/models.cpython-313.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/config.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/exceptions.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/middleware.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/__pycache__/config.cpython-311.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/__pycache__/exceptions.cpython-311.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/__pycache__/middleware.cpython-311.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/routers/__init__.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/routers/example.py
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/routers/__pycache__/__init__.cpython-311.pyc
pytemplate/../templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/routers/__pycache__/example.cpython-311.pyc
pytemplate/../templates/pyproject-template/cookiecutter.json
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/Dockerfile
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/Makefile
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/README.md
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/pyproject.toml
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.envfile}}
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/tests/__init__.py
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/tests/test_cli.py
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/tests/test_main.py
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__init__.py
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/cli.py
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/example_module.py
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/main.py
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__pycache__/__init__.cpython-311.pyc
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__pycache__/example_module.cpython-311.pyc
pytemplate/../templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__pycache__/main.cpython-311.pyc
pytemplate_uv.egg-info/PKG-INFO
pytemplate_uv.egg-info/SOURCES.txt
pytemplate_uv.egg-info/dependency_links.txt
pytemplate_uv.egg-info/entry_points.txt
pytemplate_uv.egg-info/requires.txt
pytemplate_uv.egg-info/top_level.txt
templates/fastapi-template/.gitignore
templates/fastapi-template/cookiecutter.json
templates/fastapi-template/.github/workflows/ci.yml
templates/fastapi-template/{{cookiecutter.project_name}}/.dockerignore
templates/fastapi-template/{{cookiecutter.project_name}}/.pre-commit-config.yaml
templates/fastapi-template/{{cookiecutter.project_name}}/Dockerfile
templates/fastapi-template/{{cookiecutter.project_name}}/Makefile
templates/fastapi-template/{{cookiecutter.project_name}}/README.md
templates/fastapi-template/{{cookiecutter.project_name}}/pyproject.toml
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.envfile}}
templates/fastapi-template/{{cookiecutter.project_name}}/.github/workflows/ci.yml
templates/fastapi-template/{{cookiecutter.project_name}}/tests/__init__.py
templates/fastapi-template/{{cookiecutter.project_name}}/tests/conftest.py
templates/fastapi-template/{{cookiecutter.project_name}}/tests/test_cli.py
templates/fastapi-template/{{cookiecutter.project_name}}/tests/test_example.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__init__.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/cli.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/db.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/main.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/models.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/config.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/exceptions.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/core/middleware.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/routers/__init__.py
templates/fastapi-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/routers/example.py
templates/pyproject-template/cookiecutter.json
templates/pyproject-template/.github/workflows/ci.yml
templates/pyproject-template/{{cookiecutter.project_name}}/.gitignore
templates/pyproject-template/{{cookiecutter.project_name}}/.pre-commit-config.yaml
templates/pyproject-template/{{cookiecutter.project_name}}/Dockerfile
templates/pyproject-template/{{cookiecutter.project_name}}/Makefile
templates/pyproject-template/{{cookiecutter.project_name}}/README.md
templates/pyproject-template/{{cookiecutter.project_name}}/pyproject.toml
templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.envfile}}
templates/pyproject-template/{{cookiecutter.project_name}}/tests/__init__.py
templates/pyproject-template/{{cookiecutter.project_name}}/tests/test_cli.py
templates/pyproject-template/{{cookiecutter.project_name}}/tests/test_main.py
templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/__init__.py
templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/cli.py
templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/example_module.py
templates/pyproject-template/{{cookiecutter.project_name}}/{{cookiecutter.package_name}}/main.py
tests/conftest.py
tests/test_cli.py