-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.21 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.21 KB
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
from setuptools import setup, find_packages
import os
def read_file(filename):
filepath = os.path.join(
os.path.dirname(os.path.dirname(__file__)), filename)
if os.path.exists(filepath):
return open(filepath).read()
else:
return ''
setup(name='vocoder_eva',
version='0.1',
description='evaluate vocoder',
long_description=read_file('readme.md'),
long_description_content_type="text/markdown",
url='https://github.com/exeex/vocoder_eva',
author='cswu',
author_email='xray0h@gmail.com',
license='Apache License 2.0',
packages=find_packages(exclude=['assets', 'target_projects']),
zip_safe=False,
# test_suite='tests',
install_requires=[
'librosa',
'pyworld',
'pysptk',
'numpy'
],
# entry_points = {
# 'console_scripts': ['lgl=lgl.lgl:main'],
# },
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)