forked from gensyn-ai/genrl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 855 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 855 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
45
46
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools_scm]
[project]
name = "gensyn-genrl"
version = "0.3.0"
#dynamic = ["version"]
description = "A General RL framerwork in a swarm environment"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch",
"numpy",
"hydra-core",
"datasets",
"transformers",
"tensorboard",
"wandb",
"requests",
"eth-account",
"web3",
"hivemind",
"psutil",
"msgpack",
"hf-transfer",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"pytest",
]
examples = ["trl",
"diffusers",
"langchain-sandbox",
"ollama",
"peft",
"reasoning-gym>=0.1.20"]