forked from ServiceNow/PipelineRL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 767 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 767 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pipelinerl"
version = "0.1.0"
description = "A scalable asynchronous reinforcement learning implementation with in-flight weight updates."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [
{ name = "ServiceNow" },
]
dependencies = [
"torch>=2.6",
"vllm==0.8.5.post1",
"accelerate==1.7.0",
"Tapeagents[finetune]==0.1.15",
"transformers==4.51.1",
"flash-attn==2.7.4.post1",
"ring-flash-attn==0.1.6",
"math-verify[antlr4_9_3]==0.7.0",
"orjson==3.10.16",
"redis==5.2.1",
"hydra-core>=1.3.2",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pipelinerl*"]