Files
Tippy/setup.py
Julien Lengrand-Lambert fa22b09e37 Prepares to packaging
Minor changes in version numbers and READMEs
    
Reported-by: Julien Lengrand-Lambert
Signed-off-by: Julien Lengrand-Lambert <julien@lengrandlambert.fr>
2011-12-30 10:26:26 +01:00

16 lines
466 B
Python

from distutils.core import setup
setup(
name='Tippy',
version='0.1',
author='Julien Lengrand-Lambert',
author_email='julien@lengrand.fr',
packages=['tippy', 'tippy.tests', 'examples'],
url='https://github.com/jlengrand/Tippy',
license='LICENSE.txt',
description='another Toolbox for Image Processing in PYthon, based on OpenCV',
long_description=open('README.txt').read(),
install_requires=[
"OpenCV >= 3.1",
],
)