-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.09 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.09 KB
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
from setuptools import setup, find_packages
setup(
name='eagle-llm',
version='3.0.0',
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>=2.6.0',
'transformers>=4.53.3,<5',
'accelerate>=0.26.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',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
)