-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
48 lines (41 loc) · 965 Bytes
/
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
[project]
name = "genesys"
version = "0.1.0"
description = "AGI"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=2.4.1",
"datasets>=3.0.0",
"transformers>=4.44.2",
"rich",
"antlr4-python3-runtime==4.11",
"pydantic_config @ git+https://github.com/samsja/pydantic_config.git@74c94ee",
"google-cloud-storage",
"tomli",
"docker>=7.1.0",
"pynvml>=12.0.0",
"toploc>=0.0.2",
]
[project.optional-dependencies]
sglang = [
"sglang[srt]>=0.4.3",
"sympy",
"uvloop",
"psutil",
"zmq",
"setuptools",
"fastapi",
"uvicorn",
"vllm",
"sgl-kernel>=0.0.3.post3"
]
[tool.hatch.metadata]
allow-direct-references = true # allow direct references to git repos in dependencies
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
[tool.uv]
dev-dependencies = ["ruff>=0.5.0", "pre-commit>=3.0.0","pytest>=7.0.0", "faker>=0"]