forked from MingjieChen/zerospeech2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.22 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
#!/usr/bin/env python
"""Setup script for the zerospeech2020 Python package"""
import codecs
import setuptools
import zerospeech2020
setuptools.setup(
# general description
name='zerospeech2020',
description="Evaluation and validation tools for ZeroSpeech2020",
version=zerospeech2020.__version__,
# python package dependencies
install_requires=['numpy', 'pyyaml', 'joblib', 'pandas'],
setup_requires=[],
# include Python code and any file in zerospeech2020/share
packages=setuptools.find_packages(),
package_data={'zerospeech2020': [
'share/2017/track1/*',
'share/2017/track2/*',
'share/2019/english/*',
'share/2019/surprise/*']},
zip_safe=True,
# the command-line scripts to export
entry_points={'console_scripts': [
'zerospeech2020-validate = zerospeech2020.validation.main:main',
'zerospeech2020-evaluate = zerospeech2020.evaluation.main:main']},
# metadata
author='CoML team',
author_email='[email protected]',
license='GPL3',
url='https://zerospeech.com/2020',
long_description=codecs.open('README.md', encoding='utf-8').read(),
long_description_content_type="text/markdown",
python_requires='>=3.7',
)