-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
89 lines (82 loc) · 2 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[project]
name = "felupe"
description = "Finite Element Analysis"
readme = "README.md"
authors = [
{name = "Andreas Dutzler"},
{email = "a.dutzler@gmail.com"},
]
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = [
"computational-mechanics",
"fea",
"fem",
"finite-elements",
"finite-elements-analysis",
"finite-elements-methods",
"hyperelasticity",
"partial-differential-equations",
"pde",
"python",
"scientific-computing",
"solid-mechanics-codes",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Utilities"
]
dynamic = ["version"]
dependencies = [
"numpy",
"scipy",
]
[project.optional-dependencies]
docs = [
"pydata-sphinx-theme",
"sphinx-autoapi",
"sphinx-inline-tabs",
"sphinx-copybutton",
"sphinx-design",
"sphinx-gallery",
"pypandoc",
]
autodiff = ["tensortrax", "jax"]
examples = [
"contique",
"imageio",
"pypardiso",
"torch",
]
io = [
"h5py",
"meshio",
]
parallel = ["einsumt"]
progress = ["tqdm"]
plot = ["matplotlib"]
view = ["pyvista[jupyter]"]
all = ["felupe[autodiff,io,parallel,plot,progress,view]"]
[tool.setuptools.dynamic]
version = {attr = "felupe.__about__.__version__"}
[project.urls]
Homepage = "https://felupe.readthedocs.io/en/latest"
Code = "https://github.com/adtzlr/felupe"
Issues = "https://github.com/adtzlr/felupe/issues"