-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (91 loc) · 2.16 KB
/
pyproject.toml
File metadata and controls
102 lines (91 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = [
"setuptools>=67.6.0",
"wheel>=0.40.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "cookiecutter-python-fastapi-openapi"
version = "2.0.4"
dynamic = ["readme"]
requires-python = ">=3.10"
description = "A cookiecutter for a python FastAPI Application"
keywords = [
]
authors = [
{ name="Benjamin P. Trachtenberg", email="e_ben_75-python@yahoo.com" },
]
maintainers = [
{name = "Benjamin P. Trachtenberg", email = "e_ben_75-python@yahoo.com"},
]
license = "MIT"
license-files = [
"LICENSE"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"cookiecutter~=2.6.0",
"urllib3>=2.6.0",
]
[dependency-groups]
dev = [
"pytest-cov~=4.1.0",
"pytest-cookies~=0.7.0",
"pylint~=3.0.2",
"pip-audit~=2.7.3",
"black~=24.10.0",
"bandit~=1.8.3",
]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"generic_tests: marks tests as generic_tests (deselect with -m not generic_tests)",
]
testpaths = [
"tests",
]
[tool.coverage.run]
command_line= "-m pytest -vvv"
[tool.coverage.report]
include = [
"hooks/*"
]
fail_under = 100
[tool.pylint]
max-line-length = 120
# This allows pylint to complain on FIXME and XXX notes
notes = [
"FIXME",
"XXX",
]
fail-under = 9.9
[tool.black]
line-length = 120
[tool.bandit]
exclude_dirs = [
"tests",
"venv",
"docs",
"{{cookiecutter.git_repo_name}}",
]
[tool.uv]
keyring-provider = "subprocess"
native-tls = true