-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
193 lines (182 loc) · 3.85 KB
/
pyproject.toml
File metadata and controls
193 lines (182 loc) · 3.85 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "fair-matrix"
readme = "README.md"
authors = [{name = "Facebook AI Research"}]
requires-python = ">=3.10"
dynamic = ["version", "description"]
dependencies = [
"psutil",
"datasets",
"grpcio==1.70.0",
"grpcio-tools==1.70.0",
"fire",
"jinja2",
"pyyaml",
"portalocker",
"aiohttp~=3.12",
"requests~=2.32",
"httpx~=0.28",
"openai~=1.90",
]
# zip_safe = false
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Development Status :: 4 - Beta",
]
[project.urls]
Source = "https://github.com/facebookresearch/matrix"
Tracker = "https://github.com/facebookresearch/matrix/issues"
[project.optional-dependencies]
dev = [
# Test
"pytest>=4.3.0",
"pytest-asyncio>=0.26.0",
"coverage[toml]>=5.1",
# Format
"black==24.10.0",
"isort>=5.12.0",
"pre-commit",
# Linters
"mypy>=1.13.0",
"pylint>=2.8.0",
# Library stubs
"types-PyYAML",
"types-requests",
# Release
"flit>=3.5.1",
# Doc
"sphinx",
"furo",
"myst-parser",
"sphinx-autodoc-typehints",
"ghp-import",
]
vllm_066 = [
"submitit>=1.5.2",
"transformers>=4.45.2",
"torch>=2.5.1",
"vllm==v0.6.6.post1",
"ray[serve]==2.40.0",
"boto3",
"google-genai>=1.13.0",
"datasketch",
"s3fs",
"datasets",
"iopath",
"jsonlines",
]
vllm_073 = [
"submitit>=1.5.2",
"transformers>=4.45.2",
"torch>=2.5.1",
"vllm==v0.7.3",
"ray[serve]==2.40.0",
"boto3",
"google-genai>=1.13.0",
"datasketch",
"s3fs",
"datasets",
"iopath",
"jsonlines",
]
# SGLang for DS R1
sglang_045 = [
"submitit>=1.5.2",
"transformers>=4.45.2",
"torch>=2.5.1",
"sglang[all]==0.4.5.post1",
"sglang-router",
"boto3",
"google-genai>=1.13.0",
"datasketch",
"s3fs",
"datasets",
"iopath",
"jsonlines",
]
vllm_083 = [
"submitit>=1.5.2",
"transformers>=4.45.2",
"vllm==v0.8.3",
"ray[serve]==2.43.0",
"torch>=2.6.0",
"boto3",
"google-genai>=1.13.0",
"datasketch",
"s3fs",
"datasets",
"iopath",
"jsonlines",
]
vllm_085 = [
"submitit>=1.5.2",
"transformers>=4.45.2",
"torch>=2.6.0",
"vllm==v0.8.5.post1",
"ray[serve]==2.46.0",
"boto3",
"google-genai>=1.13.0",
"datasketch",
"s3fs",
"datasets",
"iopath",
"jsonlines",
]
# For gpt-oss model with PP=1
vllm_0101 = [
# install using https://docs.vllm.ai/projects/recipes/en/latest/OpenAI/GPT-OSS.html
"submitit>=1.5.2",
"transformers>=4.45.2",
"torch>=2.7.1",
"vllm==0.10.1",
"ray[serve]>=2.48.0",
"boto3",
"google-genai>=1.13.0",
"datasketch",
"s3fs",
"datasets",
"iopath",
"jsonlines",
]
# For video processing
vision = [
"submitit>=1.5.2",
"transformers>=4.45.2",
"vllm==v0.8.3",
"ray[serve]==2.43.0",
"torch>=2.6.0",
"boto3",
"google-genai>=1.13.0",
"datasketch",
"s3fs",
"datasets",
"iopath",
"jsonlines",
"opencv-python",
"tenacity",
"perception_models @ git+https://github.com/facebookresearch/perception_models.git"
]
[project.scripts]
matrix="matrix.cli:main"
[tool.black]
exclude = '.*_pb2.*py$'
[tool.isort]
profile = "black"
skip_gitignore = true
skip_glob = ["website/*", "*.pyx", "*_pb2*py"]
[tool.mypy]
show_error_codes = true
check_untyped_defs = true
ignore_missing_imports = true
implicit_optional = true
implicit_reexport = true
exclude = '.*_pb2.*py$'
files = [
"matrix/"
]
[tool.flit.module]
name = "matrix"