-
Notifications
You must be signed in to change notification settings - Fork 500
/
setup.py
33 lines (28 loc) · 812 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from importlib.machinery import SourceFileLoader
version = SourceFileLoader('wavenet_vocoder.version',
'wavenet_vocoder/version.py').load_module().version
setup(name='wavenet_vocoder',
version=version,
description='PyTorch implementation of WaveNet vocoder',
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"torch >= 0.4.1",
"docopt",
"joblib",
"tqdm",
"tensorboardX",
"nnmnkwii >= 0.0.11",
"scikit-learn",
"librosa",
],
extras_require={
"test": [
"nose",
"pysptk >= 0.1.9",
"matplotlib",
],
})