2017-10-30 15:01:26 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
2017-11-03 19:39:52 +00:00
|
|
|
from precise import __version__
|
2017-10-30 15:01:26 +00:00
|
|
|
|
|
|
|
setup(
|
2017-11-03 19:39:52 +00:00
|
|
|
name='mycroft-precise',
|
|
|
|
version=__version__,
|
2017-10-30 15:01:26 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'precise-train=precise.train:main',
|
|
|
|
'precise-train-feedback=precise.train_feedback:main',
|
|
|
|
'precise-stream=precise.stream:main',
|
|
|
|
'precise-test=precise.test:main',
|
|
|
|
'precise-convert=precise.convert:main'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
install_requires=[
|
|
|
|
'numpy',
|
|
|
|
'tensorflow',
|
|
|
|
'speechpy',
|
|
|
|
'pyaudio',
|
|
|
|
'keras',
|
2018-02-09 00:43:03 +00:00
|
|
|
'h5py',
|
2017-11-28 03:36:49 +00:00
|
|
|
'wavio',
|
2017-12-19 01:34:38 +00:00
|
|
|
'typing',
|
2018-02-09 00:43:03 +00:00
|
|
|
'dataset',
|
2017-11-28 03:36:49 +00:00
|
|
|
# 'precise-runner' # Needs to get uploaded to PyPi first
|
2017-10-30 15:01:26 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
author='Matthew Scholefield',
|
|
|
|
author_email='matthew.scholefield@mycroft.ai',
|
|
|
|
description='Mycroft Precise Wake Word Listener',
|
|
|
|
keywords='wakeword keyword wake word listener sound',
|
|
|
|
url='http://github.com/MycroftAI/mycroft-precise',
|
|
|
|
|
|
|
|
zip_safe=True,
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Topic :: Text Processing :: Linguistic',
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.0',
|
|
|
|
'Programming Language :: Python :: 3.1',
|
|
|
|
'Programming Language :: Python :: 3.2',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
],
|
|
|
|
)
|