forked from gpustack/gpustack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
93 lines (85 loc) · 2.29 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
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "gpustack"
version = "v0.0.0"
description = "GPUStack"
authors = ["GPUStack Authors <contact@gpustack.ai>"]
readme = "README.md"
include = ["*/third_party/config/**/*","*/ui/**/*"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.115.0"
sqlmodel = "^0.0.18"
pydantic = ">=2.9.0,<2.10.0"
pydantic-settings = "^2.2.1"
setproctitle = "^1.3.3"
inflection = "^0.5.1"
openai = "^1.31.1"
prometheus-client = "^0.20.0"
colorama = "^0.4.6"
psutil = "^5.9.8"
requests = "^2.32.3"
huggingface-hub = "^0.27.0"
attrs = "^24.2.0"
aiosqlite = "^0.20.0"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.30"}
pyjwt = "^2.8.0"
argon2-cffi = "^23.1.0"
python-multipart = "^0.0.17"
dataclasses-json = "^0.6.7"
apscheduler = "^3.10.4"
asyncpg = "^0.29.0"
httpx = {extras = ["socks"], version = "^0.27.0"}
alembic = "^1.13.2"
importlib-resources = "^6.4.0"
pytest-asyncio = "^0.23.7"
truststore = "^0.9.1"
cryptography = "^43.0.0"
tzdata = "^2024.1"
modelscope = "^1.19.0"
vllm = {version = "0.7.2", optional = true}
mistral_common = {version = "^1.4.3", optional = true, extras = ["opencv"]}
uvicorn = "^0.32.0"
transformers = "^4.44.2"
fastapi-cdn-host = "^0.8.0"
wmi = { version="^1.5.1", markers = "platform_system == 'Windows'" }
pywin32 = { version="^308", markers = "platform_system == 'Windows'" }
packaging = "^24.1"
psycopg2-binary = "^2.9.10"
vox-box = {version = "0.0.11", optional = true}
tenacity = "^9.0.0"
aiofiles = "^23.2.1"
aiohttp = "^3.11.2"
bitsandbytes = {version = "^0.45.2", optional = true}
[tool.poetry.group.dev.dependencies]
coverage = {extras = ["toml"], version = "^7.5.1"}
flake8 = "^7.0.0"
flake8-bugbear = "^24.4.26"
black = "^24.4.2"
pytest = "^8.2.0"
openapi-python-client = "^0.20.0"
deptry = "^0.16.1"
pre-commit = "^3.7.1"
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.27"
shellcheck-py = "^0.10.0.1"
twine = "^5.1.1"
mike = "^2.1.3"
mkdocs-glightbox = "^0.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py310']
skip-string-normalization = true
force-exclude = '''
/(
.*/migrations/.*
)/
'''
[tool.poetry.extras]
vllm = ["vllm", "mistral_common", "bitsandbytes"]
audio = ["vox-box"]
all = ["vllm", "mistral_common", "bitsandbytes", "vox-box"]
[tool.poetry.scripts]
gpustack = "gpustack.main:main"