You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iTi-Flask/copier-template/pyproject.toml.jinja

29 lines
588 B
Django/Jinja

[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 = [
{% if framework_tag %}
"iti-flask @ {{ framework_git }}@{{ framework_tag }}",
{% else %}
"iti-flask @ {{ framework_git }}",
{% endif %}
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
]
[tool.setuptools.packages.find]
include = ["{{ project_slug }}*"]
[tool.pytest.ini_options]
pythonpath = ["."]