|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools>=67.6.0", |
| 4 | + "wheel>=0.40.0" |
| 5 | +] |
| 6 | +build-backend = "setuptools.build_meta" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "cookiecutter-python-fastapi-openapi" |
| 10 | +version = "2.0.3" |
| 11 | +dynamic = ["readme"] |
| 12 | +requires-python = ">=3.9" |
| 13 | +description = "A cookiecutter for a python FastAPI Application" |
| 14 | +keywords = [ |
| 15 | +] |
| 16 | +authors = [ |
| 17 | + { name= "Benjamin P. Trachtenberg", email= "[email protected]" }, |
| 18 | +] |
| 19 | +maintainers = [ |
| 20 | + { name = "Benjamin P. Trachtenberg", email = "[email protected]"}, |
| 21 | +] |
| 22 | +license = "MIT" |
| 23 | +license-files = [ |
| 24 | + "LICENSE" |
| 25 | +] |
| 26 | +classifiers = [ |
| 27 | + "Development Status :: 5 - Production/Stable", |
| 28 | + "Intended Audience :: Developers", |
| 29 | + "Natural Language :: English", |
| 30 | + "Operating System :: MacOS :: MacOS X", |
| 31 | + "Operating System :: POSIX", |
| 32 | + "Operating System :: POSIX :: BSD", |
| 33 | + "Operating System :: POSIX :: Linux", |
| 34 | + "Operating System :: Microsoft :: Windows", |
| 35 | + "Programming Language :: Python :: 3", |
| 36 | + "Programming Language :: Python :: 3 :: Only", |
| 37 | + "Programming Language :: Python :: 3.9", |
| 38 | + "Programming Language :: Python :: 3.10", |
| 39 | + "Programming Language :: Python :: 3.11", |
| 40 | + "Programming Language :: Python :: 3.12", |
| 41 | + "Programming Language :: Python :: 3.13", |
| 42 | + "Programming Language :: Python :: 3.14", |
| 43 | +] |
| 44 | + |
| 45 | +dependencies = [ |
| 46 | + "cookiecutter~=2.6.0", |
| 47 | +] |
| 48 | + |
| 49 | +[dependency-groups] |
| 50 | +dev = [ |
| 51 | + "pytest-cov~=4.1.0", |
| 52 | + "pytest-cookies~=0.7.0", |
| 53 | + "pylint~=3.0.2", |
| 54 | + "pip-audit~=2.7.3", |
| 55 | + "black~=24.10.0", |
| 56 | + "bandit~=1.8.3", |
| 57 | +] |
| 58 | + |
| 59 | +[tool.setuptools.dynamic] |
| 60 | +readme = {file = "README.md", content-type = "text/markdown"} |
| 61 | + |
1 | 62 | [tool.pytest.ini_options] |
2 | 63 | addopts = "--strict-markers" |
3 | 64 | markers = [ |
@@ -35,3 +96,7 @@ exclude_dirs = [ |
35 | 96 | "docs", |
36 | 97 | "{{cookiecutter.git_repo_name}}", |
37 | 98 | ] |
| 99 | + |
| 100 | +[tool.uv] |
| 101 | +keyring-provider = "subprocess" |
| 102 | +native-tls = true |
0 commit comments