-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
24 lines (23 loc) · 1.05 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
from distutils.core import setup
setup(
name='TiffCapture',
version='0.1.6',
author='Dave Williams',
author_email='[email protected]',
packages=['tiffcapture'],
url='https://github.com/cdw/TiffCapture',
download_url = 'https://github.com/cdw/TiffCapture/archive/0.1.6.tar.gz',
keywords = ["tiff", "PIL", "OpenCV"],
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator"],
license='LICENSE.txt',
description="Brings the power of OpenCV to TIFF videos; provides interface to multi-part TIFFs compatible with OpenCV's VideoCapture.",
long_description=open('README.txt').read(),
install_requires=["numpy >= 1.8.0", "Pillow >= 2.3.1" ]
)