-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathpyproject.toml
84 lines (73 loc) · 1.92 KB
/
pyproject.toml
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
[tool.poetry]
name = "openmanus-rl"
version = "0.0.1"
description = "RL framework for OpenManus"
authors = ["OpenManus-RL team"]
license = "Apache 2.0 License"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10, <3.12"
accelerate = "1.4.0"
bitsandbytes = ">=0.43.0"
datasets = ">=3.2.0"
deepspeed = "0.15.4"
distilabel = { version = ">=1.5.2", extras = ["vllm", "ray", "openai"] }
e2b-code-interpreter = ">=1.0.5"
einops = ">=0.8.0"
hf_transfer = "*"
huggingface-hub = { version = ">=0.19.2,<1.0", extras = ["cli"] }
langdetect = "*"
latex2sympy2_extended = ">=1.0.6"
liger_kernel = "0.5.3"
lighteval = { git = "https://github.com/huggingface/lighteval.git", rev = "ed084813e0bd12d82a06d9f913291fdbee774905" }
math-verify = "0.5.2"
packaging = ">=23.0"
parameterized = ">=0.9.0"
peft = ">=0.14.0"
python-dotenv = "*"
safetensors = ">=0.3.3"
sentencepiece = ">=0.1.99"
torch = "2.5.1"
transformers = "4.49.0"
vllm = "0.7.2"
wandb = ">=0.19.1"
trl = { git = "https://github.com/huggingface/trl.git", rev = "69ad852e5654a77f1695eb4c608906fe0c7e8624" }
[tool.poetry.group.dev.dependencies]
flake8 = ">=6.0.0"
isort = ">=5.12.0"
ruff = ">=0.9.0"
[tool.poetry.group.test.dependencies]
pytest = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
follow_imports = "normal"
strict = true
plugins = ["pydantic.mypy"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
[tool.codespell]
ignore-words-list = "dout, te, indicies, astroid"
skip = ["data"]
[tool.isort]
profile = "black"
use_parentheses = true
skip_gitignore = true
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
[tool.black]
line-length = 88
target-version = ['py37', 'py38', 'py39', 'py310']
[tool.ruff]
line-length = 88
fix = true
target-version = "py310"
[tool.ruff.format]
quote-style = "single"
indent-style = "space"