forked from EMI-Group/istratde
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 960 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 960 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "istratde"
version = "0.1.0"
authors = [
{ name = "Chenchen Feng", email = "chenchenfengcn@gmail.com" },
]
description = "istratde"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch >= 2.5.0",
"evox == 1.1.1",
"jax == 0.4.33",
"jaxlib == 0.4.33",
"numpy >= 1.22, < 2.0.0",
]
[project.optional-dependencies]
neuroevolution = [
"brax == 0.12.1",
"mujoco == 3.2.7",
"flax >= 0.8.0",
]
test = [
"brax == 0.12.1",
]
[project.urls]
"Homepage" = "https://github.com/EMI-Group/istratde"
"Bug Tracker" = "https://github.com/EMI-Group/istratde/issues"