-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
116 lines (99 loc) · 2.64 KB
/
pyproject.toml
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fastapi_class"
description = "Simplifies class-based views for more organized and maintainable code in FastAPI."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Yasser Tahiri", email = "[email protected]" },
]
keywords = [
"FastAPI",
"MVC",
"pydantic",
"class-based",
"class-based-views",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Framework :: FastAPI",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Framework :: AsyncIO",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Session",
"Typing :: Typed",
]
dependencies = [
"fastapi >=0.100.0,<0.120.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/yezz123/fastapi-class"
Funding = 'https://github.com/sponsors/yezz123'
[tool.hatch.version]
path = "fastapi_class/__init__.py"
[tool.isort]
profile = "black"
known_third_party = ["pydantic", "typing_extensions"]
[tool.ruff.lint]
mccabe = { max-complexity = 14 }
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"E501", # line too long
"B018" # Found useless expression.
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-third-party = ["pydantic", "typing_extensions"]
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true
[tool.mypy]
plugins = "pydantic.mypy"
follow_imports = "silent"
[tool.coverage.run]
source = ["fastapi_class"]
branch = true
context = '${CONTEXT}'
[tool.coverage.paths]
source = [
'fastapi_class/',
'/Users/runner/work/fastapi_class/fastapi_class/fastapi_class/',
'D:\a\fastapi_class\fastapi_class\fastapi_class',
]
[tool.coverage.report]
precision = 2
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"raise NotImplemented",
"@overload",
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
]
[tool.pytest]
testpaths = "tests/"
log_cli = "1"
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format= "%Y-%m-%d %H:%M:%S"
asyncio_mode= "auto"