-
Notifications
You must be signed in to change notification settings - Fork 108
/
pyproject.toml
96 lines (89 loc) · 2.54 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
[build-system]
build-backend = "mesonpy"
requires = [
"meson-python",
"numpy",
"wheel",
"pybind11",
]
[project]
name = "meshpy"
version = "2024.1"
description = "Triangular and Tetrahedral Mesh Generator"
readme= "README.rst"
license = { file = "LICENSE" }
authors = [{ name = "Andreas Kloeckner", email = "inform@tiker.net" }]
maintainers = [{ 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",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: GNU Affero General Public License v3",
"License :: Free for non-commercial use",
"Natural Language :: English",
"Programming Language :: C++",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"numpy",
"gmsh_interop",
]
[project.optional-dependencies]
doc = [
"furo",
"sphinx>=4",
"sphinx-copybutton",
]
test = [
"mako",
"pytest",
"ruff",
]
[project.urls]
Documentation = "https://documen.tician.de/meshpy"
Repository = "https://github.com/inducer/meshpy"
[tool.ruff.lint]
preview = true
extend-select = [
"B", # flake8-bugbear
"C", # flake8-comprehensions
"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
"E241", # multiple spaces after comma
"E242", # tab after comma
"E265", # block comment should start with #
"E402", # module level import not at the top of file
]
[tool.ruff.lint.per-file-ignores]
"examples/jw_meshtools.py" = ["N802", "N803", "N806"]
"examples/jw_mesh_examples.ipynb" = ["N802", "N803", "N806", "N816"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"
docstring-quotes = "double"
multiline-quotes = "double"
[tool.ruff.lint.isort]
known-local-folder = ["pyfmmlib"]
lines-after-imports = 2
combine-as-imports = true