-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (86 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (86 loc) · 1.83 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "polar"
version = "0.1.0"
description = "Polar is a rollout server for agent RL."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Binfeng Xu, Yi Dong, Hao Zhang, Shaokun Zhang, Songyang Han, Jian Hu, Mingjie Liu, etc" },
]
dependencies = [
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"httpx>=0.27.0",
"pydantic>=2.9.0",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/NVIDIA-NeMo/ProRL-Agent-Server"
Repository = "https://github.com/NVIDIA-NeMo/ProRL-Agent-Server"
Issues = "https://github.com/NVIDIA-NeMo/ProRL-Agent-Server/issues"
[project.optional-dependencies]
swebench = [
"swebench",
"datasets",
]
[project.scripts]
polar = "polar.cli:main"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.8.0",
"build>=1.2.0",
"twine>=5.0.0",
]
[tool.uv]
torch-backend = "auto"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["polar*", "slime_bridge*"]
[tool.setuptools.package-data]
polar = [
"**/README.md",
"platform/web/dist/**/*",
]
slime_bridge = ["README.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = [
".git",
".venv",
"build",
"dist",
"examples",
"logs",
"train-logs",
"tmp",
"rollout_results",
"slime",
"Megatron-LM",
]
markers = [
"unit: fast CPU-only checks",
"integration: checks that need local services or external programs",
"gpu: checks that need GPU-backed model serving",
]
[tool.ruff]
line-length = 99
target-version = "py311"
exclude = [
".git",
".venv",
"build",
"dist",
"slime",
"Megatron-LM",
"logs",
"train-logs",
"tmp",
"rollout_results",
]