forked from k2kobayashi/crank
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 690 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
if os.path.exists("README.md"):
README = open("README.md").read()
else:
README = "" # a placeholder, readme is generated on release
CHANGES = open("CHANGES.md").read()
setup(
name="crank-vc",
version="0.4.1",
description="Non-parallel Voice Conversion called crank",
url="https://github.com/k2kobayashi/crank",
author="K. KOBAYASHI",
packages=find_packages(exclude=["egs", "test", "utils"]),
long_description=(README + "\n" + CHANGES),
long_description_content_type='text/markdown',
license="MIT",
install_requires=open("tools/requirements.txt").readlines(),
)