-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (54 loc) · 1.44 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
from setuptools import setup, find_packages
setup(
name="simpletts",
description="A lightweight Python library for running TTS models with a unified API.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/fakerybakery/simpletts",
project_urls={
"Bug Tracker": "https://github.com/fakerybakery/simpletts/issues",
"Documentation": "https://github.com/fakerybakery/simpletts/wiki",
"Source Code": "https://github.com/fakerybakery/simpletts",
},
author="mrfakename",
author_email="[email protected]",
license="BSD-3-Clause",
version="0.0.3",
packages=find_packages(),
install_requires=[
"torch",
"accelerate",
"torchaudio",
"cached-path",
"transformers[torch]",
"datasets",
"pydub",
"numpy",
"scipy",
"librosa",
"soundfile",
"tqdm",
"openphonemizer",
"click",
"txtsplit",
"munch",
"kokoro",
],
extras_require={
"xtts": [
"tts",
],
"f5": [
"f5-tts",
],
"parler": [
"parler-tts",
],
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)