forked from bshall/Tacotron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (45 loc) · 1.3 KB
/
setup.cfg
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
[metadata]
name = tacotron
version = 0.1.1
author = Benjamin van Niekerk
author_email = [email protected]
url = https://github.com/bshall/Tacotron
description = A PyTorch implementation of Location-Relative Attention Mechanisms For Robust Long-Form Speech Synthesis.
long_description = file:README.md
long_description_content_type = text/markdown
project_urls =
Source = https://github.com/bshall/Tacotron
Samples = https://bshall.github.io/tacotron/
keywords =
Speech Synthesis
Tacotron
Text-to-Speech
PyTorch
classifiers =
Natural Language :: English
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
packages = tacotron
include_package_data = True
python_requires = >=3.6
install_requires =
librosa>=0.8.0
numpy>=1.18.0
tqdm>=4.41
requests
importlib-resources
toml>=0.10.2
[flake8]
max-line-length = 88
extend-ignore = E203, W503
max-complexity = 18
select = B,C,E,F,W,T4,B9