-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 747 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 747 Bytes
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
[project]
name = "sindy_shred"
version = "0.1.0"
description = "Sparse Identification of Nonlinear Dynamics with SHallow REcurrent Decoder Networks"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{name = "Mars Liyao Gao"},
{name = "Karl Lapo"},
]
keywords = ["sindy", "shred", "dynamics", "machine-learning", "pytorch"]
dependencies = [
"numpy>=1.21",
"scipy>=1.8",
"matplotlib>=3.5",
"seaborn>=0.12",
"scikit-learn>=1.0",
"torch>=2.0",
"pysindy>=1.7.5",
]
[project.optional-dependencies]
notebooks = ["jupyterlab>=4.0"]
[project.urls]
Homepage = "https://github.com/gaoliyao/sindy-shred"
Paper = "https://arxiv.org/abs/2501.13329"
[tool.setuptools.packages.find]
where = ["src"]