forked from PrimeIntellect-ai/prime-rl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.41 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
[project]
name = "zeroband"
version = "0.1.0"
description = "ZeroBand is a production ready codebase for decentralized training of LLM"
readme = "README.md"
requires-python = ">=3.10, <3.11"
dependencies = [
"torch",
"numpy",
"setuptools",
"transformers>=4.51.0",
"datasets>=3.0.0",
"pydantic_config @ git+https://github.com/samsja/pydantic_config.git@b7becc3",
"torchdata>=0.8.0",
"ninja",
"zstandard",
"pyarrow",
"wandb",
"vllm>=0.8.5",
"jaxtyping",
"beartype",
"toploc>=0.1.6",
"llmcompressor",
"pylatexenc>=2.10",
"liger_kernel",
"google-cloud-storage",
"shardcast >= 0.3.1",
"asyncio>=3.4.3",
"aiohttp>=3.10.5",
"pyext>=0.7",
"prime-iroh>=0.2.1",
"setuptools"
]
[project.optional-dependencies]
fa = ["flash-attn>=2.7.4"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true # allow direct references to git repos in dependencies
[tool.ruff]
line-length = 140
[tool.ruff.lint]
select = ["F", "I"]
ignore = ["F722", "F821"]
[tool.uv]
dev-dependencies = ["ruff>=0.5.0", "pre-commit>=3.0.0","pytest>=7.0.0", "faker"]
no-build-isolation-package = ["flash-attn"]
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"gpu: marks tests as gpu (deselect with '-m \"not gpu\"')",
]