aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJohn Sun <jsun@sightmachine.com>2014-04-04 15:56:30 -0700
committerJohn Sun <jsun@sightmachine.com>2014-04-04 15:56:30 -0700
commit09f39b9ac2b9c93979c8ea949c753982cbf2f206 (patch)
tree12ca69aa4869638e22d6e2ae3e5c5fc64abb5599 /setup.py
parent3c1ca240eb7d90e7c7e925c06712a59a4063cb7e (diff)
downloadpymba-09f39b9ac2b9c93979c8ea949c753982cbf2f206.tar.gz
pymba-09f39b9ac2b9c93979c8ea949c753982cbf2f206.zip
re-format code to fixup whitespace
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py48
1 files changed, 24 insertions, 24 deletions
diff --git a/setup.py b/setup.py
index 8875240..1bb1bff 100644
--- a/setup.py
+++ b/setup.py
@@ -2,28 +2,28 @@ 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'],
+ 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'],
- )
+)