-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (59 loc) · 1.53 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
[project]
name = "tracerl"
authors = [
{name = "hallerite", email = "me@hallerite.com"},
]
description = "Ludic - The LLM-RL library for the age of experience"
version = "0.1.0"
readme = "README.md"
requires-python = "~=3.12.0"
dependencies = [
"aiohttp>=3.13.2",
"beartype>=0.22.9",
"jaxtyping>=0.3.4",
"openai>=2.7.1",
"peft>=0.18.0",
"rich>=14.2.0",
"setuptools>=79.0.1",
"torch>=2.8.0",
"vllm>=0.13.0",
]
[project.optional-dependencies]
pipelinerl = [
"redis>=7.1.0",
]
examples = [
"datasets==4.4.1", # pinned to the versions in uv.lock that are known to work
"math-verify==0.8.0", # pinned to the versions in uv.lock that are known to work
]
tinker = [
"tinker==0.7.0", # pinned to the versions in uv.lock that are known to work
"tinker-cookbook @ git+ssh://git@github.com/thinking-machines-lab/tinker-cookbook.git@d2adfe562edb9cc97b43ceab537a3beeff892442",
]
[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
test = [
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
]
lint = [
"ruff>=0.14.5",
]
typing = [
"ty>=0.0.5",
]
dev = [
{ include-group = "test" },
{ include-group = "lint" },
{ include-group = "typing" },
]
[tool.pytest.ini_options]
addopts = ["-m", "not diagnostic"]
markers = [
"integration: marks tests as integration tests",
"gpu: marks tests as needing a GPU",
"diagnostic: marks tests that primarily emit diagnostic reports rather than asserting strict correctness",
]
testpaths = ["tests"]