-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
38 lines (36 loc) · 1.05 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="tts-scores",
packages=["tts_scores"],
version="1.0.0",
author="James",
author_email="james@adamant.ai",
description="A library for computing performance metrics for text-to-speech systems",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/neonbjb/tts-scores",
project_urls={},
install_requires=[
'tqdm',
'scipy',
'torch>=1.8',
'torchaudio>0.9',
'transformers',
'tokenizers',
'requests',
'ffmpeg',
'unidecode',
'inflect',
'pytorch_fid',
'einops'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
download_url = 'https://github.com/neonbjb/tts-scores/archive/refs/tags/1.0.0.tar.gz',
python_requires=">=3.6",
)