forked from myshell-ai/AIlice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (49 loc) · 1.47 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
setup(
name='ailice',
version='0.2.0',
packages=find_packages(),
package_data={
'': ['LICENSE'],
'ailice': ['prompts/*.txt'],
},
entry_points={
'console_scripts': [
'ailice_main = ailice.AIliceMain:main',
'ailice_web = ailice.AIliceWeb:main',
],
},
install_requires=[
'pyzmq',
'termcolor',
'simplejson',
'transformers>=4.0.0',
'torch',
'accelerate',
'bitsandbytes',
'peft',
'appdirs',
'openai',
'gradio',
'importlib-metadata',
'chromadb',
'googlesearch-python',
'urlextract', 'selenium>=4.10.0', 'html2text', 'nougat-ocr', 'scipy', 'scikit-learn',
'arxiv'
],
extras_require={
'finetuning': ['datasets', 'tensorboard', ],
'speech': ['typeguard==2.13.3', 'sounddevice', 'numpy', 'librosa', 'datasets', 'SpeechRecognition', 'espnet', 'espnet-model-zoo', 'espnet-tts-frontend', 'torchaudio',],
},
author='Steven Lu',
author_email='stevenlu1729@gmail.com',
description='A lightweight AI Agent',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/stevenlu137/AIlice',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)