forked from jorgensd/dolfinx-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 823 Bytes
/
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
[build-system]
requires = ["setuptools>=64.4.0", "wheel", "pip>=22.3"]
build-backend = "setuptools.build_meta"
[project]
name = "DOLFINx_Tutorial"
version = "0.9.0"
dependencies = [
"jupyter-book",
"meshio",
"h5py",
"seaborn",
"pandas",
"tqdm",
"pyvista[all]>=0.43.0",
"fenics-dolfinx>=0.9.0",
]
[project.optional-dependencies]
dev = ["pdbpp", "ipython", "jupytext", "ruff", "pre-commit"]
[tool.setuptools]
packages = []
[tool.jupytext]
formats = "ipynb,py:percent"
[tool.ruff.lint.isort]
known-first-party = ["basix", "dolfinx", "ffcx", "ufl"]
known-third-party = ["gmsh", "numpy", "pytest"]
section-order = [
"future",
"standard-library",
"mpi",
"third-party",
"first-party",
"local-folder",
]
[tool.ruff.lint.isort.sections]
"mpi" = ["mpi4py", "petsc4py"]