[build-system] requires = ["setuptools>=69", "wheel"] build-backend = "setuptools.build_meta" [project] name = "{{ project_slug | replace('_', '-') }}" version = "0.1.0" description = "{{ project_name }}" readme = "README.md" requires-python = ">=3.11" dependencies = [ "iti-flask @ {{ framework_git }}{% if framework_tag %}@{{ framework_tag }}{% endif %}", {% if include_system %} "iti-system @ {{ system_git }}{% if system_tag %}@{{ system_tag }}{% endif %}", {% endif -%} ] [project.optional-dependencies] dev = [ "pytest>=7.0.0", "httpx>=0.27.0", ] [tool.setuptools.packages.find] include = ["{{ project_slug }}*"] [tool.pytest.ini_options] pythonpath = ["."]