-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.04 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
[build-system]
requires = ["setuptools>=64.4.0", "wheel", "pip>=22.3", "poetry-core"]
build-backend = "setuptools.build_meta"
[project]
name = "DOLFINx_Tutorial"
version = "0.11.0.dev0"
dependencies = [
"jupyter-book<2.0",
"meshio",
"h5py",
"seaborn",
"pandas",
"tqdm",
"pyvista[all]>=0.45.0",
"fenics-dolfinx>=0.10.0",
"sphinx-codeautolink",
"trame_jupyter_extension",
"jupytext",
"vtk>=9.5.0",
]
[project.optional-dependencies]
dev = ["pdbpp", "ipython", "ruff", "pre-commit"]
netgen = [
"ngsPETSc@git+https://github.com/NGSolve/ngsPETSc/@main",
] # Has to be optional as we cant get netgen on linux/arm64
[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"]