-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (38 loc) · 1.23 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
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
# helpful things to run before installing: (TODO: make this optional / built-in)
# sudo apt-get install -qq python-setuptools python-numpy python-opencv
# easy_install -U picamera ipython
setup(
name='pi-eye',
version='0.0.2',
author='',
author_email='[email protected]',
url='https://github.com/CapitalFactory/pi-eye',
keywords='raspberry-pi rpi motion detect image diff classification',
description='Raspberry PI-based camera-based instrumentation',
long_description=open('README.md').read(),
license=open('LICENSE').read(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Topic :: Scientific/Engineering :: Image Recognition',
],
# setup instructions
install_requires=[
'numpy',
# 'cv2', # aptitude install is not currently recognized
'picamera',
'boto',
'bottle',
'mako',
'redis',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'pi-eye = eye.cli:main'
],
},
include_package_data=True,
)