-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
145 lines (125 loc) · 3.13 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyngo"
description = "Pydantic Package for Adding Models into a Django or Django Rest Framework Project ✨"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Yasser Tahiri", email = "[email protected]" },
]
keywords = [
"django",
"django-rest-framework",
"pydantic",
"pydantic-models",
"pydantic-django",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Framework :: Django",
"Programming Language :: Python",
"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 = [
"typing-extensions >=3.7.4,<4.13.0",
"pydantic>=2.8.2,<2.10.0",
"Django >=3.2.0,<6.0.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/yezz123/pyngo"
Funding = 'https://github.com/sponsors/yezz123'
[project.optional-dependencies]
lint = [
"pre-commit==4.0.1",
"mypy==1.12.1",
"ruff==0.7.0",
]
test = [
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pytest-asyncio == 0.24.0",
"pytest-pretty",
"django-stubs",
]
[tool.hatch.version]
path = "pyngo/__init__.py"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
mccabe = { max-complexity = 14 }
[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.coverage.run]
source = ["pyngo", "tests"]
branch = true
context = '${CONTEXT}'
[tool.coverage.paths]
source = [
"pyngo",
"tests",
]
[tool.mypy]
plugins = "pydantic.mypy"
follow_imports = "silent"
strict_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
disallow_any_generics = true
check_untyped_defs = true
ignore_missing_imports = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = "pyngo.tests.*"
ignore_missing_imports = true
check_untyped_defs = true
[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"
[tool.pytest.ini_options]
filterwarnings = [
"ignore:The default value of USE_TZ",
]