2017-10-30 15:01:26 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2018-02-23 19:45:17 +00:00
|
|
|
from setuptools import setup
|
2018-02-21 20:27:21 +00:00
|
|
|
|
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__,
|
2018-02-23 19:45:17 +00:00
|
|
|
packages=[
|
|
|
|
'precise',
|
|
|
|
'precise.scripts',
|
|
|
|
'precise.pocketsphinx',
|
|
|
|
'precise.pocketsphinx.scripts'
|
|
|
|
],
|
2017-10-30 15:01:26 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2018-02-23 19:45:17 +00:00
|
|
|
'precise-collect=precise.scripts.collect:main',
|
2018-02-21 20:27:21 +00:00
|
|
|
'precise-convert=precise.scripts.convert:main',
|
|
|
|
'precise-eval=precise.scripts.eval:main',
|
2018-02-22 07:02:50 +00:00
|
|
|
'precise-record=precise.scripts.record:main',
|
|
|
|
'precise-record-pocketsphinx=precise.pocketsphinx.scripts.record:main',
|
2018-02-21 05:42:04 +00:00
|
|
|
'precise-stream=precise.scripts.stream:main',
|
|
|
|
'precise-test=precise.scripts.test:main',
|
2018-02-22 07:02:50 +00:00
|
|
|
'precise-test-pocketsphinx=precise.pocketsphinx.scripts.test:main',
|
2018-02-21 20:27:21 +00:00
|
|
|
'precise-train=precise.scripts.train:main',
|
|
|
|
'precise-train-incremental=precise.scripts.train_incremental:main',
|
2017-10-30 15:01:26 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
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',
|
2018-02-21 05:42:04 +00:00
|
|
|
'prettyparse',
|
|
|
|
'precise-runner'
|
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',
|
2018-02-21 20:27:21 +00:00
|
|
|
|
2017-10-30 15:01:26 +00:00
|
|
|
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',
|
|
|
|
],
|
|
|
|
)
|