aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authormorefigs <morefigs@gmail.com>2018-06-22 15:48:51 +1000
committermorefigs <morefigs@gmail.com>2018-06-22 15:48:51 +1000
commit5b37a1711717717f2d166c3aa5ea040d922e2e9f (patch)
treef07a3bc720833b50defbee362a10e04c452649b1 /setup.py
parenta6511997853e5ec8ae9f3abfcc66f097062a3062 (diff)
downloadpymba-5b37a1711717717f2d166c3aa5ea040d922e2e9f.tar.gz
pymba-5b37a1711717717f2d166c3aa5ea040d922e2e9f.zip
clean up
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py24
1 files changed, 14 insertions, 10 deletions
diff --git a/setup.py b/setup.py
index 4051b7b..b15b7d9 100644
--- a/setup.py
+++ b/setup.py
@@ -1,28 +1,32 @@
-from setuptools import setup, find_packages
-import os, sys, glob, fnmatch
+from setuptools import setup
-setup(name="pymba",
+
+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.""",
+ 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',
+ 'License :: OSI Approved :: MIT License',
+ 'Operating System :: Microsoft :: Windows',
+ 'Operating System :: POSIX :: Linux',
'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='python, opencv, cv, machine vision, computer vision, image recognition, vimba, allied vision technologies, avt',
+ keywords='python, opencv, cv, machine vision, computer vision, image recognition, vimba,'
+ 'allied vision technologies, avt',
author='morefigs',
author_email='morefigs@gmail.com',
url='https://github.com/morefigs/pymba',
- license='BSD',
+ license='MIT',
packages=['pymba', 'pymba.tests'],
zip_safe=False,
requires=['numpy'],
-)
+ )