-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issues with migration from setuptools to toml
- Loading branch information
Showing
2 changed files
with
49 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,13 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=61.0", | ||
"wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
dynamic = ["dependencies"] | ||
name = "pykoopman" | ||
version = "1.0.5" | ||
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]" }, | ||
{ 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" | ||
|
@@ -26,10 +20,51 @@ classifiers = [ | |
"License :: OSI Approved :: MIT License", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
] | ||
dependencies = [ | ||
"matplotlib == 3.5.0", | ||
"derivative", | ||
"scikit-learn < 1.2", | ||
"numpy", | ||
"scipy", | ||
"pydmd", | ||
"optht", | ||
"scipy", | ||
"prettytable", | ||
"torch", | ||
"torchvision", | ||
"lightning" | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pytest-cov", | ||
"pytest-lazy-fixture", | ||
"flake8-builtins-unleashed", | ||
"setuptools_scm", | ||
"setuptools_scm_git_archive", | ||
"jupyter", | ||
"notebook", | ||
"nbsphinx", | ||
"sphinx-codeautolink", | ||
"sphinx >= 2,<7.0.0", | ||
"sphinxcontrib-apidoc", | ||
"sphinx_rtd_theme", | ||
"pre-commit", | ||
"sphinx-nbexamples", | ||
"jupyter_contrib_nbextensions", | ||
"PyQt5", | ||
"osqp", | ||
] | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools>=61.0", | ||
"wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/dynamicslab/pykoopman" | ||
"Bug Tracker" = "https://github.com/dynamicslab/pykoopman/issues" | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} | ||
dependencies = { file = ["requirements.txt"] } |