forked from inducer/pytential
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
166 lines (154 loc) · 3.78 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"cython>=0.25",
"setuptools>=63",
]
[project]
name = "pytential"
version = "2024.0"
description = "Evaluate layer and volume potentials accurately. Solve integral equations."
readme = "README.rst"
authors = [
{ name = "Andreas Kloeckner", email = "[email protected]" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = [
"arraycontext>=2021.1",
"boxtree>=2021.1",
"immutables>=0.19",
"loopy>=2024.1",
"meshmode>=2021.2",
"modepy>=2021.1",
"pymbolic>=2024.2",
"pyopencl>=2022.1",
"pytools>=2024.1",
"scipy>=1.2",
"sumpy>=2022.1",
]
[project.optional-dependencies]
doc = [
"furo",
"sphinx>=4",
"sphinx-copybutton",
]
fmmlib = [
"pyfmmlib>=2023.1",
]
test = [
"mypy",
"pylint",
"pytest",
"ruff",
]
[project.urls]
Documentation = "https://documen.tician.de/pytential"
Homepage = "https://mathema.tician.de/software/pytential"
Repository = "https://github.com/inducer/pytential"
[tool.setuptools.packages.find]
include = [
"pytential*",
]
[tool.ruff]
preview = true
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"C", # flake8-comprehensions
# "D", # pydocstyle
"E", # pycodestyle
"F", # pyflakes
"G", # flake8-logging-format
# "I", # flake8-isort
"N", # pep8-naming
"NPY", # numpy
"Q", # flake8-quotes
"RUF", # ruff
"UP", # pyupgrade
"W", # pycodestyle
]
extend-ignore = [
"C90", # McCabe complexity
"E226", # missing whitespace around arithmetic operator
"E402", # module level import not at the top of file
"N802", # function name should be lowercase
"N803", # argument name should be lowercase
"N806", # variable name should be lowercase
"RUF012", # ClassVar for mutable class attributes
"RUF022", # __all__ is not sorted
"UP031", # use f-strings instead of %
"UP032", # use f-strings instead of .format
]
exclude = [
"experiments/*.py",
"pytential/symbolic/old_diffop_primitives.py",
"pytential/symbolic/pde/maxwell/generalized_debye.py",
]
[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 = [
# "arraycontext",
# "boxtree",
# "loopy",
# "meshmode",
# "modepy",
# "pymbolic",
# "pyopencl",
# "pytools",
# ]
# known-local-folder = [
# "pytential",
# ]
# lines-after-imports = 2
[tool.pytest.ini_options]
markers = [
"slowtest: mark a test as slow",
]
[tool.typos.default]
extend-ignore-re = [
"(?Rm)^.*(#|//)\\s*spellchecker:\\s*disable-line$"
]
[tool.mypy]
python_version = "3.10"
warn_unused_ignores = true
exclude = [
"pytential/symbolic/old_diffop_primitives.py",
"pytential/symbolic/pde/maxwell/generalized_debye.py",
]
[[tool.mypy.overrides]]
module = [
"boxtree.*",
"cgen.*",
"loopy.*",
"mako.template",
"matplotlib.*",
"meshmode.*",
"pymbolic.*",
"pyopencl.*",
"pytential.qbx.target_specific.*",
"pytest.*",
"scipy.*",
"sumpy.*",
"sympy.*",
]
ignore_missing_imports = true