-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpyproject.toml
78 lines (69 loc) · 1.96 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "neuromancer"
authors = [
{ name = "Aaron Tuor", email = "aaron.tuor@pnnl.gov" },
{ name = "Jan Drgona", email = "jan.drgona@pnnl.gov" },
{ name = "James Koch", email = "james.koch@pnnl.gov" },
{ name = "Madelyn Shapiro", email = "madelyn.shapiro@pnnl.gov"},
{ name = "Rahul Birmiwal", email = "rahul.birmiwal@pnnl.gov"},
{ name = "Draguna Vrabie", email = "draguna.vrabie@pnnl.gov" },
{ name = "Bruno Jacob", email = "bruno.jacbo@pnnl.gov" }
]
description = "Neural Modules with Adaptive Nonlinear Constraints and Efficient Regularization"
readme = "README.md"
requires-python = ">=3.9, <3.11"
keywords = [
"Deep Learning",
"Pytorch",
"Linear Models",
"Dynamical Systems",
"Data-driven control",
]
license = { text = "BSD-2-Clause" }
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License"
]
dependencies = [
"dill",
"graphviz",
"matplotlib",
"mlflow==2.5.0",
"networkx==3.0.0",
"numpy<1.24.0",
"pandas",
"plum_dispatch==1.7.3",
"scikit_learn",
"scipy",
"six",
"pydot==1.4.2",
"pyts",
"torch",
"torchdiffeq",
"toml",
"lightning",
"cvxpy",
"cvxpylayers",
"casadi",
"wandb",
"torchsde"
]
version = "1.5.2"
[project.urls]
homepage = "https://github.com/pnnl/neuromancer/"
documentation = "https://github.com/pnnl/neuromancer/"
repository = "https://github.com/pnnl/neuromancer/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
tests = ["pytest", "hypothesis"]
examples = ["casadi", "cvxpy", "imageio", "cvxpylayers"]
docs = ["sphinx", "sphinx-rtd-theme"]