diff options
| author | John Sun <jsun@sightmachine.com> | 2014-04-04 15:49:14 -0700 |
|---|---|---|
| committer | John Sun <jsun@sightmachine.com> | 2014-04-04 15:49:14 -0700 |
| commit | 3c1ca240eb7d90e7c7e925c06712a59a4063cb7e (patch) | |
| tree | a16466e168fd42f7f184fe5f96947e918c9a4c74 /setup.py | |
| parent | f71223d809af8cb749f6a3b37b3a29a022322d02 (diff) | |
| download | pymba-3c1ca240eb7d90e7c7e925c06712a59a4063cb7e.tar.gz pymba-3c1ca240eb7d90e7c7e925c06712a59a4063cb7e.zip | |
Rename directory to pymba instead of pyvimba.
Fix test_systemfeatures.py
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,10 +1,10 @@ from setuptools import setup, find_packages import os, sys, glob, fnmatch -setup(name="pyvimba", +setup(name="pymba", version=0.1, - description="pyvimba is a Python wrapper for the Allied Vision Technologies (AVT) Vimba C API.", - long_description="""pyvimba 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.""", + 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', @@ -22,7 +22,7 @@ setup(name="pyvimba", author_email='support@sightmachine.com', url='http://simplecv.org', license='BSD', - packages = ['pyvimba', 'pyvimba.tests'], + packages = ['pymba', 'pymba.tests'], zip_safe = False, requires=['cv2','cv', 'numpy', 'scipy', 'pygame', 'pil', 'svgwrite'], |
