forked from k2kobayashi/sprocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 989 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
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
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(
# package info
name="sprocket-vc",
version="0.18.4",
description="Voice conversion software",
url="https://github.com/k2kobayashi/sprocket",
license="MIT",
# author details
author="Kazuhiro Kobayashi",
author_email="[email protected]",
# package
packages=find_packages(exclude=("docs", "tests")),
long_description=(README + "\n" + CHANGES),
long_description_content_type='text/markdown',
# requirements
python_requires=">=3.5",
install_requires=open("requirements.txt").readlines(),
extras_require={"develop": ["nose"],},
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Sound/Audio :: Speech",
],
)