forked from dynamicslab/pykoopman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (65 loc) · 1.94 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
[build-system]
requires = [
"setuptools>=61.0",
"wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pykoopman"
version = "1.1.0"
authors = [
{ name = "Shaowu Pan", email = "[email protected]" },
{ name = "Eurika Kaiser", email = "[email protected]" },
{ name = "Brian de Silva", email = "[email protected]" },
{ name = "J. Nathan Kutz", email = "[email protected]" },
{ name = "Steven L. Brunton", email = "[email protected]" },
]
description = "Python package for data-driven approximations to the Koopman operator."
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"matplotlib <= 3.5.0, >=3.5.0",
"derivative ~= 0.6.0",
"scikit-learn >= 1.1.3, <= 1.1.3",
"numpy >=1.20, <= 1.26",
"scipy >1.6.0, <= 1.11.2",
"pydmd >0.4, <= 0.4.1",
"optht ~= 0.2.0",
"prettytable >3.0.0, <= 3.9.0",
"torch ~= 2.1.0",
"torchvision ~= 0.16.0",
"torchaudio ~= 2.1.0",
"lightning ~= 2.0.9",
]
[project.optional-dependencies]
dev = [
"pytest <= 7.4.4",
"pytest-cov ~= 4.1.0",
"pytest-lazy-fixture ~= 0.6.3",
"flake8-builtins-unleashed ~= 1.3.1",
"setuptools_scm ~= 8.0.2",
"setuptools_scm_git_archive",
"jupyter >= 1.0.0",
"notebook >7.0.0, <=7.0.4",
"nbsphinx",
"sphinx-codeautolink",
"sphinx >= 3,<=7.0.0",
"sphinxcontrib-apidoc",
"sphinx_rtd_theme",
"pre-commit",
"sphinx-nbexamples",
"jupyter_contrib_nbextensions",
]
[project.urls]
"Homepage" = "https://github.com/dynamicslab/pykoopman"
"Bug Tracker" = "https://github.com/dynamicslab/pykoopman/issues"
[tool.setuptools_scm]
#[tool.setuptools.dynamic]
#dependencies = { file = ["requirements.txt"] }