forked from SafeAILab/EAGLE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1 KB
/
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='eagle-llm',
version='1.2.1',
description='Accelerating LLMs by 3x with No Quality Loss',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author_email='[email protected]',
url='https://github.com/SafeAILab/EAGLE',
packages=find_packages(),
install_requires=[
"torch",
"transformers",
"accelerate == 0.21.0",
"fschat == 0.2.31",
"gradio == 3.50.2",
"openai == 0.28.0",
"anthropic == 0.5.0",
"sentencepiece == 0.1.99",
"protobuf == 3.19.0",
"wandb"
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)