forked from astramind-ai/Auralis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (77 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from pathlib import Path
from setuptools import setup, find_packages
import sys
import platform
def check_platform():
if sys.platform != 'linux' and sys.platform != 'linux2':
raise RuntimeError(
f"""
Following vllm requirements are not met:
Current platform: {platform.system()} but only linux platforms are supported.
"""
)
check_platform()
setup(
name='auralis',
version='0.2.8',
description='This is a faster implementation for TTS models, to be used in highly async environment',
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
author='Marco Lironi',
author_email='[email protected]',
url='https://github.com/astramind.ai/auralis',
package_dir={'': 'src'},
packages=find_packages(where='src'),
entry_points={
'console_scripts': [
'auralis.openai=auralis.entrypoints.oai_server:main',
],
},
install_requires=[
"aiofiles",
"beautifulsoup4",
"cachetools",
"colorama",
"cutlet",
"EbookLib",
"einops",
"ffmpeg",
"fsspec",
"hangul_romanize",
"huggingface_hub",
"ipython",
"librosa",
"networkx",
"num2words",
"opencc",
"packaging",
"pyloudnorm",
"pytest",
"pypinyin",
"safetensors",
"sounddevice",
"soundfile",
"spacy==3.7.5",
"setuptools",
"safetensors",
"torchaudio",
"tokenizers",
"transformers",
"vllm==0.6.4.post1",
"nvidia-ml-py",
"numpy",
"langid"
],
extras_require={
'docs': [
'mkdocs>=1.4.0',
'mkdocs-material>=9.0.0',
'mkdocstrings>=0.20.0',
'mkdocstrings-python>=1.0.0',
],
},
python_requires='>=3.10',
classifiers=[
'Programming Language :: Python :: 3',
],
)