-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.45 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
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vindy"
version = "0.1.7"
authors = [
{ name="Jonas Kneifl", email="jonas.kneifl@itm.uni-stuttgart.com" },
{ name="Paolo Conti", email="paolo.conti@polimi.it" },
]
description = "AESINDy is a Python package for automated system identification of low-dimensional systems combining autoencoders and SINDy."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"matplotlib>=3.7",
"numpy>=1.21.4",
"scikit_learn>=1.2",
"scipy>=1.10",
"sympy>=1.12",
"pysindy>=1.7",
"tensorflow>=2.15",
"tensorflow_probability>=0.24",
"tensorflow_model_optimization>=0.7",
"tf-keras>=2.16",
]
keywords = [
"model order reduction",
"system identification",
"surrogate modeling",
"reduced order models",
"variational",
"uncertainty quantification",
"generative modeling",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
gui = [
"visualizer-3d",
"imageio",
]
interfaces = [
]
[tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
#package-data = {"sample" = ["*.dat"]}
[project.urls]
Homepage = "https://github.com/jkneifl/VENI-VINDy-VICI"
Issues = "https://github.com/jkneifl/VENI-VINDy-VICIissues"