-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
171 lines (161 loc) · 3.32 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools-scm",
]
[project]
authors = [
{email = "[email protected]", name = "Matt Graham"},
]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.22",
"sympy>=1.8",
]
description = "Symbolically construct NumPy functions and their derivatives."
dynamic = [
"version",
]
keywords = [
"sympy",
"numpy",
"symbolic",
"differentiation",
]
name = "symnum"
readme = "README.md"
requires-python = ">=3.10"
license.file = "LICENCE"
urls.homepage = "https://github.com/matt-graham/symnum"
urls.documentation = "https://matt-graham.github.io/symnum"
[project.optional-dependencies]
dev = [
"black",
"build",
"pytest",
"ruff",
"tox>=4",
"twine",
]
[tool.coverage]
report = {skip_covered = true, sort = "cover"}
run = {branch = true, parallel = true, relative_files = true, source = [
"symnum",
]}
paths.source = [
"src",
".tox*/*/lib/python*/site-packages",
]
[tool.pytest.ini_options]
addopts = "--color=yes -v"
testpaths = [
"tests",
]
[tool.ruff]
force-exclude = true
ignore = [
"D203", # no-blank-line-before-class
"D212", # multi-line-summary-first-line
"D417", # argument description in docstring (unreliable)
"PLR2004", # magic values in comparisons
"RET505", # superfluous else return,
"UP007", # X | Y for type annotations (Python 3.10+ only),
"D205", # blank line between summary and description in docstrings
"D102", # missing docstrings on public methods
"D105", # missing docstrings on magic methods
]
per-file-ignores = { "test_*" = ["D100", "D101", "D103", "S101"], "__init__.py" = ["F401"] }
select = [
"A",
"ARG",
"B",
"BLE",
"C",
"COM",
"D",
"DJ",
"DTZ",
"E",
"EM",
"ERA",
"EXE",
"F",
"FBT",
"I",
"ICN",
"ISC",
"N",
"NPY",
"PD",
"PGH",
"PIE",
"PL",
"PT",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"T",
"TCH",
"TID",
"UP",
"W",
"YTT",
]
target-version = "py310"
isort.known-first-party = [
"symnum",
]
mccabe.max-complexity = 18
pep8-naming.classmethod-decorators = [
"classmethod",
"pydantic.validator",
]
pydocstyle.convention = "google"
pylint.max-args = 10
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/symnum/_version.py"
[tool.tox]
legacy_tox_ini = """
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
[testenv]
commands =
pytest --cov {posargs}
deps =
pytest
pytest-cov
[testenv:docs]
commands =
sphinx-apidoc -o docs src/ -T -e -d 2 -M
sphinx-build -W -b html docs docs/_build/html
deps =
sphinx
pydata-sphinx-theme
[tox]
env_list =
py310
py311
py312
"""