forked from sightmachine/SimpleCV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.46 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
from setuptools import setup, find_packages
import sys, os
from SimpleCV import __version__
setup(name="SimpleCV",
version=__version__,
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='support@ingenuitas.com',
url='http://simplecv.org',
license='BSD',
packages = find_packages(exclude=['ez_setup', 'examples', 'tests', 'sampleimages']),
zip_safe = True,
requires=['cv', 'numpy', 'scipy', 'pygame', 'pil'],
scripts=['scripts/simplecv']
)