-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (87 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
95 lines (87 loc) · 1.71 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
markers = [
"gpu: marks tests as requiring GPU resources"
]
[tool.setuptools]
packages = ["agentfly"]
package-dir = {"" = "src"}
[tool.isort]
profile = "black"
line_length = 120
known_first_party = ["agentfly"]
skip_glob = ["*/verl/*"]
[tool.ruff.lint]
# Disable import checking - let isort handle it
ignore = ["I"]
[project]
name = "AgentFly"
version = "0.1.0"
description = "Agent reinforcement learning framework."
readme = "README.md"
requires-python = ">=3.12,<3.13" # Python 3.12.x
license = { text = "Apache-2.0" }
dependencies = [
"multiprocess",
"requests",
"PyYAML",
"timeout-decorator",
"redis",
"docker",
"openai",
"faiss-cpu",
"vllm==0.10.0",
"termcolor",
"tenacity",
"bs4",
"qwen_vl_utils",
"onnxruntime",
"mpmath",
"wandb",
"chat-bricks",
"diffusers",
"google-genai",
"chess",
]
[project.optional-dependencies]
verl = [
"accelerate",
"codetiming",
"datasets",
"dill",
"flash-attn",
"hydra-core",
"liger-kernel",
"numpy",
"pandas",
"peft",
"pyarrow>=15.0.0",
"pybind11",
"pylatexenc",
"pre-commit",
"ray[default]",
"tensordict",
"torchdata",
"transformers<5.0.0",
"packaging>=20.0",
"uvicorn",
"fastapi"
]
dev = [
"pytest",
"nest-asyncio",
"pytest-asyncio",
"pre-commit",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
"mkdocs-document-dates",
"mkdocs-link-preview-plugin",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-git-authors-plugin",
]