-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 897 Bytes
/
setup.py
File metadata and controls
37 lines (36 loc) · 897 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
from setuptools import setup, find_packages
setup(
name="iflry-tts",
version="0.1.0",
description="IFLRY-branded live translation and TTS system.",
author="IFLRY",
packages=find_packages(),
install_requires=[
"transformers",
"soundfile",
"numpy",
"pynput",
"sounddevice",
"librosa",
"art",
],
extras_require={
"cpu": [
"torch>=1.10,<2.0",
"torchaudio>=0.10,<2.0",
"torchvision>=0.10,<2.0",
],
"gpu": [
"torch>=1.10,<2.0",
"torchaudio>=0.10,<2.0",
"torchvision>=0.10,<2.0",
"nvidia-pyindex",
],
},
entry_points={
"console_scripts": [
"iflry-tts=iflry_tts.main:main",
],
},
python_requires=">=3.8,<3.12", # Limit Python versions for compatibility
)