-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpyproject.toml
More file actions
233 lines (207 loc) · 5.38 KB
/
pyproject.toml
File metadata and controls
233 lines (207 loc) · 5.38 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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "loopy"
version = "2025.2"
description = "A code generator for array-based code on CPUs and GPUs"
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",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = [
"pytools>=2025.2.2",
"pymbolic>=2024.2.2",
"genpy>=2016.1.2",
# https://github.com/inducer/loopy/pull/419
"numpy>=1.19",
"cgen>=2025.1",
"islpy>=2025.2.5",
"codepy>=2017.1",
"colorama",
"Mako",
"constantdict",
"typing-extensions>=4",
"strenum>=0.4.15",
]
[project.optional-dependencies]
pyopencl = [
"pyopencl>=2022.3",
]
fortran = [
"fparser>=0.2.0",
"ply>=3.6",
]
[dependency-groups]
dev = [
# https://github.com/astral-sh/ruff/issues/16943
"ruff!=0.11.1,!=0.11.2",
"types-colorama",
"types-Pygments",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
exclude = [
"/loopy/target/c/compyte/.*",
"/.test*.yml",
"/asv*.json",
"/MEMO",
"/requirements.txt",
"/.ci*",
"/.git*",
"/.git*",
"/doc/_build",
"/run-*.sh",
"/.editorconfig",
"/.basedpyright",
]
[project.urls]
Documentation = "https://documen.tician.de/loopy"
Homepage = "https://github.com/inducer/loopy"
[tool.setuptools.package-dir]
# https://github.com/Infleqtion/client-superstaq/pull/715
"" = "."
[tool.ruff]
preview = true
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"C", # flake8-comprehensions
"E", # pycodestyle
"F", # pyflakes
"FA", # flake8-future-annotations
"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 = [
"C90", # McCabe complexity
"E226", # missing whitespace around operator
"E402", # module level import not at the top of file
"N817", # CamelCase `SubstitutionRuleMappingContext` imported as acronym `SRMC`
"SIM102", # combine if statements
"RUF067", # no code in __init__ *shrug*
"TRY004",
"TRY300",
# FIXME
"UP031", # .format instead of %s
"BLE001",
]
[tool.ruff.lint.per-file-ignores]
"test/test_loopy.py" = ["B023"]
"loopy/frontend/fortran/translator.py" = ["N802", "B028"]
"proto-tests/*.py" = ["B"]
"contrib/**/*.py" = ["I002"]
"doc/conf.py" = ["I002", "S102"]
"*.ipynb" = ["I002"]
"examples/**/*.py" = ["I002"]
"proto-tests/**/*.py" = ["I002", "S102"]
"test/**/*.py" = ["I002"]
"test/test_*.py" = ["S102"]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "double"
multiline-quotes = "double"
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = [
"pytools",
"pymbolic",
"islpy",
"pyopencl",
"cgen",
"genpy",
]
known-local-folder = [
"loopy",
]
lines-after-imports = 2
required-imports = ["from __future__ import annotations"]
[tool.typos.default]
extend-ignore-re = [
"(?Rm)^.*(#|//)\\s*spellchecker:\\s*disable-line$"
]
[tool.typos.default.extend-words]
# like the numpy function, array range
arange = "arange"
# N-Dimensional
ND = "ND"
# an element-wise slice of array u
ue = "ue"
# used in an ordering context, "ab" / "ba"
ba = "ba"
# Fortran Loopy
floopy = "floopy"
[tool.typos.files]
extend-exclude = [
"loopy/target/c/compyte",
"notes/*/*.eps",
]
[tool.pytest.ini_options]
addopts = "--ignore=proto-tests"
filterwarnings = [
'ignore:.*:loopy.diagnostic.DirectCallUncachedWarning',
]
[tool.basedpyright]
reportImplicitStringConcatenation = "none"
reportUnnecessaryIsInstance = "none"
reportUnusedCallResult = "none"
reportExplicitAny = "none"
reportPrivateUsage = "none"
# Multiple reasons for this:
# - make_subst_func is reported as having an incomplete type (but only in CI?)
# - numpy scalar types are reported as incomplete (because of "any" precision)
reportUnknownVariableType = "none"
reportUnusedParameter = "hint"
reportUnreachable = "hint"
reportUnnecessaryComparison = "hint"
# 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"
exclude = [
"proto-tests/*.py",
"contrib/mem-pattern-explorer/*.py",
"loopy/ipython_ext.py",
"loopy/frontend/fortran/*.py",
"doc",
".conda-root",
".venv",
]
[[tool.basedpyright.executionEnvironments]]
root = "test"
reportArgumentType = "hint"
reportAttributeAccessIssue = "none"
reportMissingImports = "none"
reportMissingParameterType = "none"
reportUnknownArgumentType = "none"
reportUnknownMemberType = "hint"
reportUnknownParameterType = "none"
reportUnknownVariableType = "none"