forked from google/aiyprojects-raspbian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.04 KB
/
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
from setuptools import setup, find_packages
setup(
name='aiy-projects-python',
version='1.4',
description='AIY Python API',
long_description='A set of Python APIs designed for the AIY Voice Kit and AIY Vision Kit, which help you build intelligent systems that can understand what they hear and see.',
author='AIY Team',
author_email='[email protected]',
url="https://aiyprojects.withgoogle.com/",
project_urls={
'GitHub: issues': 'https://github.com/google/aiyprojects-raspbian/issues',
'GitHub: repo': 'https://github.com/google/aiyprojects-raspbian',
},
license='Apache 2',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'google-assistant-library>=1.0.1',
'google-assistant-grpc>=0.2.0',
'google-auth>=1.5.1',
'google-auth-oauthlib>=0.2.0',
'google-cloud-speech>=0.36.0',
'gpiozero',
'protobuf>=3.6.1',
'picamera',
'Pillow',
'RPi.GPIO',
],
python_requires='>=3.5.3',
)