-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (75 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
80 lines (75 loc) · 1.99 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
[project]
name = "cookiecutter-fastapi-backend"
version = "2.5.1"
description = "Cookiecutter template to build and deploy fastapi backends..batteries included"
authors = [{ name = "nickatnight", email = "nialexanderke@proton.me" }]
requires-python = ">=3.9"
readme = "README.md"
dependencies = [
"cookiecutter==2.6.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators"
]
keywords=[
"cookiecutter",
"Python",
"projects",
"project templates",
"Jinja2",
"skeleton",
"scaffolding",
"project directory",
"package",
"packaging",
"FastAPI"
]
[project.urls]
Homepage = "https://github.com/nickatnight/cookiecutter-fastapi-backend"
Repository = "https://github.com/nickatnight/cookiecutter-fastapi-backend"
[dependency-groups]
dev = [
"pytest==8.3.3",
"pytest-cookies==0.7.0",
"sh==2.0.7",
"binaryornot==0.4.4",
"pre-commit==3.8.0",
"pytest-instafail==0.5.0",
"sphinx==7.4.7",
"sphinx-rtd-theme==3.0.1",
"sphinx-rtd-dark-mode==1.3.0",
"tomli==2.2.1",
"typing-extensions==4.14.0"
]
[tool.uv]
required-version = ">=0.7.18"
[tool.ruff]
line-length = 100
exclude = [".git", "__pycache__", ".mypy_cache", ".pytest_cache"]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
# "I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"B904",
"B006",
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]