-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 825 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='nu',
version='0.2.0',
packages=['nu'],
author='Nyan Of The Moon',
author_email='[email protected]',
description='Framework for creating Cozmo skills using multiple sensory inputs.',
long_description=long_description,
url='https://hotchiwawa.com',
license='MIT',
entry_points={
'console_scripts': [
'nu = nu.__main__:main'
]
},
install_requires=[
'argparse',
'configparser',
'redis',
'hiredis',
'sense-hat',
'cozmo[camera]',
'SpeechRecognition',
'PyAudio',
'PocketSphinx',
'python-Levenshtein',
'google-api-python-client',
'textblob',
'flask',
'pyopenssl'
],
zip_safe=False
)