-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 1.63 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
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zoomy_core"
version = "0.2.0"
description = "zoomy_core is the pure Python core of Zoomy: A simulation software for dimensionally-reduced free surface flows."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GNU" }
authors = [
{ name = "Ingo Steldermann", email = "steldermann@mbd.rwth-aachen.de" }
]
keywords = ["simulation", "shallow flow", "free surface flow", "shallow moments", "shallow water", "VAM"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Framework :: Jupyter",
]
dependencies = [
"sympy>=1.14",
"numpy",
"scipy",
"param",
"loguru",
]
[project.optional-dependencies]
full = [
"h5py",
"matplotlib",
"meshio",
]
gui = [
"pyvista",
"trame",
"trame-vtk",
"trame-vuetify",
"panel",
]
coupling = [
"precice",
]
testing = [
"swashes",
"pyswashes",
"pytest",
]
mesh = [
"gmsh",
"python-gmsh",
"rasterio",
"meshio",
]
dev = [
"watchfiles",
"Cython",
"pytest-html",
]
server = [
"zoomy-server",
]
# Example: pip install zoomy_core[viz,io]
# Example: pip install zoomy_core[dev]
[project.urls]
Homepage = "https://github.com/mbd-rwth/Zoomy"
Documentation = "https://mbd-rwth.github.io/Zoomy"
Source = "https://github.com/mbd-rwth/Zoomy"
Issues = "https://github.com/mbd-rwth/Zoomy/issues"
[tool.setuptools.packages.find]
include = ["zoomy_core*"]
exclude = ["zoomy_core.model.legacy*", "zoomy_core.model.models.legacy*", "zoomy_core.fvm.legacy*"]