diff options
| author | morefigs <morefigs@gmail.com> | 2014-04-11 19:23:05 +1000 |
|---|---|---|
| committer | morefigs <morefigs@gmail.com> | 2014-04-11 19:23:05 +1000 |
| commit | 51175010c1a59f1e17379e007cdd3efa3c2e09b0 (patch) | |
| tree | ba09faebdeb74ecb732d0db139714b3893aa65f9 /setup.py | |
| parent | 23a05652c2faabb82146b0c6e156ee4a002dd9c7 (diff) | |
| parent | e237c3370522d5debe6e6a2b00ecb9b50eccf9b8 (diff) | |
| download | pymba-51175010c1a59f1e17379e007cdd3efa3c2e09b0.tar.gz pymba-51175010c1a59f1e17379e007cdd3efa3c2e09b0.zip | |
Merge branch 'task/JNAPC-431' of https://github.com/sightmachine/pymba into sightmachine-task/JNAPC-431
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1bb1bff --- /dev/null +++ b/setup.py @@ -0,0 +1,29 @@ +from setuptools import setup, find_packages +import os, sys, glob, fnmatch + +setup(name="pymba", + version=0.1, + description="pymba is a Python wrapper for the Allied Vision Technologies (AVT) Vimba C API.", + long_description="""pymba is a Python wrapper for the Allied Vision Technologies (AVT) Vimba C API. It wraps the VimbaC.dll file included in the AVT Vimba installation to provide a simple Python interface for AVT cameras. It currently supports most of the functionality provided by VimbaC.dll.""", + 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, vimba, allied vision technologies', + author='Sight Machine Inc', + author_email='support@sightmachine.com', + url='http://simplecv.org', + license='BSD', + packages=['pymba', 'pymba.tests'], + zip_safe=False, + requires=['cv2', 'cv', 'numpy', 'scipy', 'pygame', 'pil', 'svgwrite'], + +) |
