2017-10-30 15:01:26 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-03-01 02:49:34 +00:00
|
|
|
# Copyright 2018 Mycroft AI Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
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-27 03:19:30 +00:00
|
|
|
'precise-engine=precise.scripts.engine:main',
|
2018-02-21 05:42:04 +00:00
|
|
|
'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-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',
|
|
|
|
],
|
|
|
|
)
|