-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.02 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
[project]
name = "rl-values"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"accelerate>=1.12.0",
"einops>=0.8.2",
"flax>=0.12.3",
"grpcio>=1.78.0",
"grpcio-tools>=1.78.0",
"httpx>=0.28.1",
"huggingface-hub>=1.4.1",
"jax>=0.9.0.1",
"jaxtyping>=0.3.9",
"jinja2>=3.1.6",
"mlx>=0.30.6",
"mlx-lm>=0.30.7",
"safetensors>=0.7.0",
"textual>=0.47.0",
"torch>=2.10.0",
"transformers>=5.2.0",
"vllm-mlx",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
train = "rl_values.cli:train"
node = "rl_values.cli:node"
proto = "rl_values.cli:proto"
view = "rl_values.cli:view"
scheduler = "rl_values.cli:scheduler"
tui = "rl_values.cli:tui"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = ["src/rl_values"]
[tool.uv.sources]
vllm-mlx = { git = "https://github.com/waybarrios/vllm-mlx.git" }
tome = { path = "Tome" }
[tool.ruff]
line-length = 150