67 lines
2.1 KiB
Python
Executable File
67 lines
2.1 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
from precise import __version__
|
|
|
|
setup(
|
|
name='mycroft-precise',
|
|
version=__version__,
|
|
packages=[
|
|
'precise',
|
|
'precise.scripts',
|
|
'precise.pocketsphinx',
|
|
'precise.pocketsphinx.scripts'
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'precise-collect=precise.scripts.collect:main',
|
|
'precise-convert=precise.scripts.convert:main',
|
|
'precise-eval=precise.scripts.eval:main',
|
|
'precise-record=precise.scripts.record:main',
|
|
'precise-record-pocketsphinx=precise.pocketsphinx.scripts.record:main',
|
|
'precise-stream=precise.scripts.stream:main',
|
|
'precise-test=precise.scripts.test:main',
|
|
'precise-test-pocketsphinx=precise.pocketsphinx.scripts.test:main',
|
|
'precise-train=precise.scripts.train:main',
|
|
'precise-train-incremental=precise.scripts.train_incremental:main',
|
|
]
|
|
},
|
|
install_requires=[
|
|
'numpy',
|
|
'tensorflow',
|
|
'speechpy',
|
|
'pyaudio',
|
|
'keras',
|
|
'h5py',
|
|
'wavio',
|
|
'typing',
|
|
'dataset',
|
|
'prettyparse',
|
|
'precise-runner'
|
|
],
|
|
|
|
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',
|
|
],
|
|
)
|