forked from sightmachine/SimpleCV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.55 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
from setuptools import setup, find_packages
import os, sys, glob, fnmatch
#from SimpleCV import __version__
setup(name="SimpleCV",
version=1.2,
download_url='http://sourceforge.net/projects/simplecv/files/1.2/SimpleCV-1.2.tar.gz',
description="Make Computers See with SimpleCV, the Python Framework for Machine Vision",
long_description="""Super-library for machine vision wrappers in Python, providing a unified, pythonic interface to image aquisition, conversion, manipulation, and feature extraction.""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Manufacturing',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development :: Libraries :: Python Modules'],
keywords='opencv, cv, machine vision, computer vision, image recognition, kinect, freenect',
author='Ingenuitas Inc',
author_email='[email protected]',
url='http://simplecv.org',
license='BSD',
packages = find_packages(exclude=['ez_setup']),
zip_safe = True,
requires=['cv2','cv', 'numpy', 'scipy', 'pygame', 'pil'],
package_data = { #DO NOT REMOVE, NEEDED TO LOAD INLINE IMAGES
'SimpleCV': ['sampleimages/*']
},
scripts=['scripts/simplecv']
)