-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
152 lines (133 loc) · 3.53 KB
/
pyproject.toml
File metadata and controls
152 lines (133 loc) · 3.53 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pymbolic"
version = "2025.1"
description = "A package for symbolic computation"
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Andreas Kloeckner", email = "inform@tiker.net" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = [
"constantdict",
"pytools>=2025.2",
# for TypeIs
"typing-extensions>=4.10",
]
[project.optional-dependencies]
matchpy = [
"matchpy",
]
numpy = [
"numpy>=1.6",
]
test = [
"basedpyright",
"optype",
"pytest",
"ruff",
]
[project.urls]
Documentation = "https://documen.tician.de/pymbolic"
Homepage = "https://github.com/inducer/pymbolic"
[tool.hatch.build.targets.sdist]
exclude = [
"/.git*",
"/doc/_build",
"/.editorconfig",
"/run-*.sh",
"/.basedpyright",
]
[tool.ruff]
preview = true
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"C", # flake8-comprehensions
"E", # pycodestyle
"F", # pyflakes
"G", # flake8-logging-format
"I", # flake8-isort
"N", # pep8-naming
"NPY", # numpy
"PGH", # pygrep-hooks
"Q", # flake8-quotes
"RUF", # ruff
"SIM", # flake8-simplify
"TC", # flake8-type-checking
"UP", # pyupgrade
"W", # pycodestyle
]
extend-ignore = [
"C409", # remove comprehension within tuple call
"C90", # McCabe complexity
"E226", # missing whitespace around arithmetic operator
"E241", # multiple spaces after comma
"E242", # tab after comma
"E402", # module level import not at the top of file
"UP031", # use f-strings instead of %
"UP032", # use f-strings instead of .format
"RUF067", # no code in __init__ *shrug*
"TRY004",
]
[tool.ruff.lint.per-file-ignores]
"experiments/traversal-benchmark.py" = ["E501"]
"doc/conf.py" = ["I002", "S102"]
"experiments/*.py" = ["I002"]
"test/*.py" = ["S102"]
[tool.ruff.lint.pep8-naming]
extend-ignore-names = ["map_*"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"
docstring-quotes = "double"
multiline-quotes = "double"
[tool.typos.default]
extend-ignore-re = [
"(?Rm)^.*(#|//)\\s*spellchecker:\\s*disable-line"
]
[tool.typos.default.extend-words]
"nd" = "nd"
[tool.ruff.lint.isort]
known-first-party = ["pytools"]
known-local-folder = ["pymbolic"]
lines-after-imports = 2
combine-as-imports = true
required-imports = ["from __future__ import annotations"]
[tool.basedpyright]
reportImplicitStringConcatenation = "none"
reportUnnecessaryIsInstance = "none"
reportUnusedCallResult = "none"
reportExplicitAny = "none"
reportUnusedParameter = "hint"
ignore = [
".venv",
]
# This reports even cycles that are qualified by 'if TYPE_CHECKING'. Not what
# we care about at this moment.
# https://github.com/microsoft/pyright/issues/746
reportImportCycles = "none"
pythonVersion = "3.10"
pythonPlatform = "All"
[[tool.basedpyright.executionEnvironments]]
root = "test"
reportUnknownArgumentType = "hint"
[[tool.basedpyright.executionEnvironments]]
root = "pymbolic/interop/symengine.py"
reportMissingTypeStubs = "none"
reportMissingImports = "none"