37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
#!/usr/bin/env python3
 | 
						|
# Copyright (c) 2017 Mycroft AI Inc.
 | 
						|
from setuptools import setup, find_packages
 | 
						|
 | 
						|
setup(
 | 
						|
    name='precise-runner',
 | 
						|
    version='0.1.0',
 | 
						|
    packages=find_packages(),
 | 
						|
    install_requires=[
 | 
						|
        'pyaudio'
 | 
						|
    ],
 | 
						|
 | 
						|
    author='Matthew Scholefield',
 | 
						|
    author_email='matthew.scholefield@mycroft.ai',
 | 
						|
    description='Wrapper to use 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',
 | 
						|
 | 
						|
        'Programming Language :: Python :: 2',
 | 
						|
        'Programming Language :: Python :: 2.7',
 | 
						|
        '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',
 | 
						|
    ],
 | 
						|
)
 |