|
| 1 | +[project] |
| 2 | +name = "PyDMD" |
| 3 | +dynamic = ["version"] |
| 4 | +description = "Python Dynamic Mode Decomposition." |
| 5 | +requires-python = ">=3.8" |
| 6 | +dependencies = [ |
| 7 | + "numpy<2", |
| 8 | + "scipy>=1.6.0", |
| 9 | + "matplotlib", |
| 10 | + "scikit-learn", |
| 11 | + "xarray", |
| 12 | + "h5netcdf", |
| 13 | +] |
| 14 | +readme = "README.md" |
| 15 | +license = {file = "LICENSE"} |
| 16 | +keywords = ["dynamic-mode-decomposition", "dmd"] |
| 17 | +classifiers=[ |
| 18 | + "Development Status :: 5 - Production/Stable", |
| 19 | + "License :: OSI Approved :: MIT License", |
| 20 | + "Programming Language :: Python :: 3", |
| 21 | + "Programming Language :: Python :: 3.8", |
| 22 | + "Programming Language :: Python :: 3.9", |
| 23 | + "Programming Language :: Python :: 3.10", |
| 24 | + "Programming Language :: Python :: 3.11", |
| 25 | + "Programming Language :: Python :: 3.12", |
| 26 | + "Intended Audience :: Science/Research", |
| 27 | + "Topic :: Scientific/Engineering :: Mathematics", |
| 28 | +] |
| 29 | +authors = [ |
| 30 | + {name = "Nicola Demo"}, |
| 31 | + {name = "Marco Tezzele"}, |
| 32 | + {name = "Francesco Andreuzzi"}, |
| 33 | + {name = "Sara Ichinaga"}, |
| 34 | + {name = "Karl Lapo"}, |
| 35 | +] |
| 36 | +maintainers = [ |
| 37 | + |
| 38 | +] |
| 39 | + |
| 40 | +[project.optional-dependencies] |
| 41 | +test = [ |
| 42 | + "pytest", |
| 43 | + "pytest-cov", |
| 44 | + "pytest-mock", |
| 45 | + "ezyrb>=v1.2.1.post2205" |
| 46 | +] |
| 47 | +docs = [ |
| 48 | + "sphinx>=1.4", |
| 49 | + "sphinx_rtd_theme" |
| 50 | +] |
| 51 | + |
| 52 | +[project.urls] |
| 53 | +Homepage = "https://pydmd.github.io/PyDMD" |
| 54 | +Documentation = "https://pydmd.github.io/PyDMD/code.html" |
| 55 | +Issues = "https://github.com/PyDMD/PyDMD/issues" |
| 56 | +Repository = "https://github.com/PyDMD/PyDMD" |
| 57 | + |
| 58 | +[build-system] |
| 59 | +requires = [ "setuptools>=41", "wheel", "setuptools-git-versioning>=2.0,<3", ] |
| 60 | +build-backend = "setuptools.build_meta" |
| 61 | + |
| 62 | +[tool.setuptools-git-versioning] |
| 63 | +enabled = true |
| 64 | +template = "{tag}" |
| 65 | + |
| 66 | +[tool.setuptools.packages.find] |
| 67 | +include = ["pydmd*"] |
| 68 | + |
1 | 69 | [tool.black] |
2 | 70 | line-length = 80 |
3 | 71 |
|
|
0 commit comments