-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
84 lines (80 loc) · 1.28 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
[project]
name = 'pancax'
version = '0.0.7'
authors = [
{name = 'Craig M. Hamel, email = <[email protected]>'}
]
dependencies = [
'matplotlib',
'meshio',
'netCDF4',
'pandas',
'scipy',
'vtk'
]
[project.optional-dependencies]
cpu = [
'chex',
'equinox',
'jax==0.4.33',
'jaxtyping',
'optax'
]
cuda = [
'chex',
'equinox',
'jax[cuda12]==0.4.33',
'jaxtyping',
'optax'
]
docs = [
'sphinx',
'sphinx-copybutton',
'sphinx-rtd-theme',
'sphinxcontrib-bibtex',
'sphinxcontrib-napoleon'
]
rocm = [
'chex',
'equinox',
'jax[rocm]==0.4.33',
'jaxtyping',
'optax'
]
test = [
'pytest',
'pytest-cov',
]
viz = [
'pyvista'
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# [tool.setuptools]
[tool.hatch.build.targets.wheel]
packages = [
'pancax',
# 'pancax.bcs',
# 'pancax.bvps',
# 'pancax.constitutive_models',
# 'pancax.constitutive_models.mechanics',
# 'pancax.data',
# 'pancax.domains',
# 'pancax.fem',
# 'pancax.fem.elements',
# 'pancax.loss_functions',
# 'pancax.math',
# 'pancax.networks',
# 'pancax.optimizers',
# 'pancax.physics_kernels',
# 'pancax.problems'
]
[tool.coverage.report]
exclude_lines = [
"pragma: no coverage",
"if __name__ == '__main__'",
"def main",
"def __repr__",
"pass"
]