-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.71 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "opinf"
description = "Operator Inference for data-driven model reduction of dynamical systems."
dynamic = ["version"]
authors = [
{ name = "Willcox Research Group", email = "kwillcox@oden.utexas.edu" },
]
maintainers = [{ name = "Shane A. McQuarrie", email = "smcquar@sandia.gov" }]
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = [
"operator inference",
"model reduction",
"data-driven model reduction",
"scientific machine learning",
]
classifiers = [
"Programming Language :: Python :: 3",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
]
dependencies = [
"h5py>=3.9.0",
"numpy>=1.23.2",
"scipy>=1.10.1",
"matplotlib>=3.7",
"scikit-learn>=1.3.0",
]
[project.optional-dependencies]
dev = [
"bibtexparser>=2.0.0b7",
"tox>=4",
"pre-commit>=3.7.1",
"flake8==7.0.0",
"black==24.4.2",
"jupyterlab",
"pandas",
"notebook",
]
[project.urls]
homepage = "https://willcox-research-group.github.io/rom-operator-inference-Python3/source/index.html"
documentation = "https://willcox-research-group.github.io/rom-operator-inference-Python3/source/index.html"
repository = "https://github.com/Willcox-Research-Group/rom-operator-inference-Python3.git"
[tool.black]
line-length = 79
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.dynamic]
version = { attr = "opinf.__version__" }