-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
executable file
·46 lines (43 loc) · 1.31 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
#!/usr/bin/env python
from distutils.core import setup
import setuptools # noqa, required for markdown manifest
setup(
name="hifi-gan-bwe",
version="0.1.14",
description=(
"Unofficial implementation of the HiFi-GAN+ model "
"for audio bandwidth extension"
),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/brentspell/hifi-gan-bwe/",
author="Brent M. Spell",
author_email="[email protected]",
packages=["hifi_gan_bwe", "hifi_gan_bwe.scripts"],
setup_requires=[],
install_requires=[
"audioread",
"matplotlib",
"numpy",
"requests",
"soundfile",
"torch",
"torchaudio",
"tqdm",
"wandb",
],
entry_points={
"console_scripts": [
"hifi-gan-bwe = hifi_gan_bwe.scripts.synth:main",
"hifi-clone = hifi_gan_bwe.scripts.clone:main",
"hifi-export = hifi_gan_bwe.scripts.export:main",
"hifi-synth = hifi_gan_bwe.scripts.synth:main",
"hifi-train = hifi_gan_bwe.scripts.train:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)