forked from pnnl/neuromancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.74 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "neuromancer"
authors = [
{ name = "Aaron Tuor", email = "[email protected]" },
{ name = "Jan Drgona", email = "[email protected]" },
{ name = "James Koch", email = "[email protected]" },
{ name = "Madelyn Shapiro", email = "[email protected]"},
{ name = "Draguna Vrabie", email = "[email protected]" }
]
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"
]
version = "1.4.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"]