forked from ModelTC/lightllm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 768 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
from setuptools import setup, find_packages
setup(
name="lightllm",
version="2.0.0",
packages=find_packages(
exclude=("build", "include", "test", "dist", "docs", "benchmarks", "lightllm.egg-info")
),
author="model toolchain",
author_email="",
description="lightllm for inference LLM",
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"
],
)