forked from PyDMD/PyDMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (73 loc) · 1.8 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
72
73
74
75
76
77
78
79
80
[project]
name = "PyDMD"
dynamic = ["version"]
description = "Python Dynamic Mode Decomposition."
requires-python = ">=3.8"
dependencies = [
"numpy<2",
"scipy>=1.6.0",
"matplotlib",
"scikit-learn",
"xarray",
"h5netcdf",
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["dynamic-mode-decomposition", "dmd"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
]
authors = [
{name = "Nicola Demo"},
{name = "Marco Tezzele"},
{name = "Francesco Andreuzzi"},
{name = "Sara Ichinaga"},
{name = "Karl Lapo"},
]
maintainers = [
{email = "[email protected]"}
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
"ezyrb>=v1.2.1.post2205"
]
tutorial = [
"jupyter",
"pandas",
"ezyrb",
"opencv-python",
"ffmpeg-python",
]
docs = [
"sphinx>=1.4",
"sphinx_rtd_theme"
]
[project.urls]
Homepage = "https://pydmd.github.io/PyDMD"
Documentation = "https://pydmd.github.io/PyDMD/code.html"
Issues = "https://github.com/PyDMD/PyDMD/issues"
Repository = "https://github.com/PyDMD/PyDMD"
[build-system]
requires = [ "setuptools>=41", "wheel", "setuptools-git-versioning>=2.0,<3", ]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
[tool.setuptools.packages.find]
include = ["pydmd*"]
[tool.black]
line-length = 80
[tool.isort]
profile = "black"