-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
113 lines (101 loc) · 1.84 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "AFL/double_agent/_version.py"
[project]
name = "AFL-agent"
dynamic = ["version"]
description = "Agent code for the Autonomous Formulation Lab"
readme = "README.md"
authors = [
{ name = "Tyler B. Martin", email = "[email protected]" },
{ name = "Peter A. Beaucage" },
{ name = "Duncan R. Sutherland" }
]
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
"xarray",
"tqdm",
"netcdf4",
"pandas",
"scipy",
"matplotlib",
"seaborn",
"pint",
"periodictable",
"pillow",
"scikit-image",
"scikit-learn",
"bottleneck",
"sasmodels",
"shapely",
"sympy",
"tiled[all]",
"sasdata",
]
[project.optional-dependencies]
jupyter = [
"jupyter",
"jupyterlab",
"ipywidgets",
"ipympl",
"nodejs",
]
tensorflow = [
"tensorflow>=2.7",
"gpflow",
]
pytorch = [
"torch",
"torchvision",
]
automation = [
"flask<2.3", # before_first request is removed in 2.3
"flask-jwt-extended>=4.0",
"flask_cors",
"watchdog",
"markupsafe",
"pyserial",
"bokeh",
"requests",
]
dev = [
"black",
"isort",
"mypy",
"pytest",
]
all = [
"jupyter",
"jupyterlab",
"ipywidgets",
"ipympl",
"nodejs",
"tensorflow>=2.7",
"gpflow",
"torch",
"torchvision",
"flask<2.3",
"flask-jwt-extended>=4.0",
"flask_cors",
"watchdog",
"markupsafe",
"pyserial",
"bokeh",
"requests",
"black",
"isort",
"mypy",
"pytest",
]
[tool.hatch.build.targets.wheel]
packages = ["AFL"]