-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 945 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
from setuptools import setup, find_packages
setup(
name='edgetpuvision',
version='7.0',
description='EdgeTPU camera API',
long_description='API to run inference on image data coming from the camera.',
author='Coral',
author_email='[email protected]',
url="https://coral.ai/",
license='Apache 2',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy>=1.12.1',
'Pillow>=4.0.0',
'pygobject>=3.22.0',
'protobuf>=3.0.0',
'pycoral>=1.0.0',
],
entry_points = {
'console_scripts': ['edgetpu_classify=edgetpuvision.classify:main',
'edgetpu_classify_server=edgetpuvision.classify_server:main',
'edgetpu_detect=edgetpuvision.detect:main',
'edgetpu_detect_server=edgetpuvision.detect_server:main'],
},
python_requires='>=3.5.3',
)