forked from LoongServe/LoongServe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 884 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="loongserve",
version="2.0.0",
packages=find_packages(
exclude=("build", "include", "test", "dist", "docs", "benchmarks", "loongserve.egg-info")
),
author="model toolchain",
author_email="",
description="elastic distributed LLM serving system",
long_description="",
long_description_content_type="text/markdown",
url="",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Linux",
],
python_requires=">=3.9",
install_requires=[
"pyzmq",
"uvloop",
# "torch",
"transformers",
"einops",
"packaging",
"rpyc",
"ninja",
"safetensors",
# "triton",
"fastapi",
"pillow",
"ray",
"sentencepiece",
"aiohttp"
],
)