-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (43 loc) · 836 Bytes
/
setup.py
File metadata and controls
44 lines (43 loc) · 836 Bytes
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
from setuptools import setup
setup(
name='AbstractAI',
version='0.1.0',
author='Charlie Angela Mehlenbeck',
author_email='charlie_inventor2003@yahoo.com',
packages=['AbstractAI'],
py_modules=[],
scripts=[],
url='https://github.com/inventor2525/AbstractAI',
license='LICENSE',
description='A simple library to abstract various ML models.',
long_description=open('README.md').read(),
install_requires=[
'numpy',
'torch>=2.0.1',
'numexpr>=2.8.4',
'transformers',
'bitsandbytes',
'einops',
'accelerate',
'xformers',
'scipy',
'sentencepiece',
'openai-whisper',
'datasets',
'soundfile',
'nltk',
'PyQt5',
'sounddevice',
'pydub',
'evdev',
'pyperclip',
'pyautogui',
'pexpect',
'tzlocal',
'llama-cpp-python',
'openai',
'auto-gptq',
'optimum',
],
python_requires='~=3.10'
)