-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
84 lines (70 loc) · 1.67 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
mypkg = ["*.txt", "*.json"]
[project]
name = "evox"
version = "0.9.0"
authors = [
{ name = "Bill Huang", email = "[email protected]" },
{ name = "Christina Lee", email = "[email protected]" },
{ name = "Zhenyu Liang", email = "[email protected]" },
]
description = "evox"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"jax >= 0.4.16",
"jaxlib >= 0.3.0",
"optax >= 0.1.0",
"pyarrow >= 10.0.0",
"orbax-checkpoint >= 0.5.0",
]
[project.optional-dependencies]
test = [
"chex >= 0.1.0",
"flax >= 0.5.0",
"pytest >= 6.0.0",
"tensorflow >= 2.12.0",
]
vis = [
"plotly >= 5.0.0",
"pandas >= 2.0.0",
]
gymnasium = ["gymnasium >= 0.29.0"]
envpool = ["envpool >= 0.8.0"]
neuroevolution = [
"tensorflow-datasets >= 4.0.0",
"grain >= 0.1.0",
"brax >= 0.11.0",
]
distributed = ["ray >= 2.0.0"]
full = [
"gymnasium >= 0.29.0",
"ray >= 2.0.0",
"envpool >= 0.8.0",
"gpjax >= 0.8.0",
"plotly >= 5.0.0",
"pandas >= 2.0.0",
"tensorflow-datasets >= 4.0.0",
"grain >= 0.1.0",
"brax >= 0.11.0",
"plotly >= 5.0.0",
"pandas >= 2.0.0",
]
gp = ["gpjax >= 0.8.0"]
[project.urls]
"Homepage" = "https://github.com/EMI-Group/evox"
"Bug Tracker" = "https://github.com/EMI-Group/evox/issues"