-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
185 lines (146 loc) · 3.18 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
[build-system]
requires = ["setuptools"]
[project]
name = "fodantic"
version = "0.0.5"
description = "Pydantic-based HTTP forms"
authors = [
{name = "Juan-Pablo Scaletti", email = "[email protected]"},
]
license = { "file" = "MIT-LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
dependencies = [
"pydantic >= 2.6.0",
]
[project.optional-dependencies]
dev = [
"pyright",
"ruff >= 0.2.0",
]
test = [
"pytest",
]
[project.urls]
repository = "https://github.com/jpsca/fodantic"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
fodantic = [
"src/*",
]
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"TYPE_CHECKING",
"def __repr__",
"def __str__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:"
]
[tool.coverage.html]
directory = "covreport"
[tool.pyright]
include = ["src"]
exclude = [
"**/__pycache__",
]
reportPrivateImportUsage = false
reportWildcardImportFromLibrary = false
[tool.pytest.ini_options]
addopts = "--doctest-modules"
[tool.tox]
legacy_tox_ini = """
[tox]
skipsdist = True
envlist = py310,py311,py312
[testenv]
skip_install = true
commands =
pip install -U uv
uv pip install requirements-text.txt
pytest -x src/fodantic.py test_fodantic.py
"""
[tool.ruff]
line-length = 90
indent-width = 4
target-version = "py311"
exclude = [
".*",
"_build",
"build",
"covreport",
"dist",
]
include = ["*.py"]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
# Enable auto-formatting of code examples in docstrings. Markdown,
# reStructuredText code/literal blocks and doctests are all supported.
#
# This is currently disabled by default, but it is planned for this
# to be opt-out in the future.
docstring-code-format = false
# Set the line length limit used when formatting code snippets in
# docstrings.
#
# This only has an effect when the `docstring-code-format` setting is
# enabled.
docstring-code-line-length = "dynamic"
[tool.ruff.lint]
fixable = ["ALL"]
ignore = [
# x is too complex
"C901",
# whitespace before ':'
"E203",
"E501",
# x defined from star imports
"F405",
# line break before binary operator
"W505",
"W605",
]
select = [
# bugbear
"B",
# mccabe"", comprehensions, commas
"C",
# pycodestyle errors
"E",
# pyflakes
"F",
# logging format
"G",
# imports
"I",
# quotes
"Q",
# pycodestyle warnings
"W",
]
[tool.ruff.lint.isort]
known-first-party = ["fodantic"]
# Use two line after imports.
lines-after-imports = 2