-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
64 lines (58 loc) · 1.5 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fenicsx-shells"
version = "0.10.0.dev0"
description = "A FEniCSx library for simulating thin structures"
readme = "README.md"
requires-python = ">=3.9.0"
license = { file = "COPYING.LESSER" }
authors = [
{ name = "Jack S. Hale", email = "[email protected]" },
{ name = "Tian Yang" }
]
dependencies = [
"fenics-dolfinx>=0.10.0.dev0,<0.11.0",
]
[project.optional-dependencies]
doc = ["jupytext", "myst_parser", "sphinx_rtd_theme", "sphinx"]
demo = ["matplotlib"]
test = ["pytest"]
lint = ["ruff"]
ci = [
"fenicsx-shells[doc]",
"fenicsx-shells[demo]",
"fenicsx-shells[test]",
"fenicsx-shells[lint]",
]
[tool.ruff]
line-length = 100
indent-width = 4
[tool.ruff.lint]
select = [
"E", # pycodestyle
"W", # pycodestyle
"F", # pyflakes
"I", # isort - use standalone isort
"RUF", # Ruff-specific rules
"UP", # pyupgrade
"ICN", # flake8-import-conventions
"NPY", # numpy-specific rules
"FLY", # use f-string not static joins
]
ignore = ["UP007", "RUF012"]
allowed-confusables = ["σ"]
[tool.ruff.lint.isort]
known-first-party = ["basix", "dolfinx", "ffcx", "ufl"]
known-third-party = ["gmsh", "numba", "numpy", "pytest", "pyvista"]
section-order = [
"future",
"standard-library",
"mpi",
"third-party",
"first-party",
"local-folder",
]
[tool.ruff.lint.isort.sections]
"mpi" = ["mpi4py", "petsc4py"]