forked from bootphon/shennong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (27 loc) · 905 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
#!/usr/bin/env python
"""Setup script for the shennong toolbox package"""
import codecs
import setuptools
import shennong
setuptools.setup(
# general description
name='shennong',
description='A toolbox for unsupervised speech recognition',
version=shennong.version(),
# python package dependancies
setup_requires=['pytest-runner', 'numpy', 'scipy'],
tests_require=['pytest'],
# packages for code and data
packages=setuptools.find_packages(),
package_data={'shennong': ['share/bottleneck/*']},
# binaries
entry_points={'console_scripts': [
'speech-features = bin.speech_features:main']},
# metadata for upload to PyPI
author='Mathieu Bernard, INRIA',
author_email='[email protected]',
license='GPL3',
url=shennong.url(),
long_description=codecs.open('README.md', encoding='utf-8').read(),
zip_safe=True,
)