mirror of
https://github.com/jlengrand/Tippy.git
synced 2026-03-10 08:51:16 +00:00
Minor changes in version numbers and READMEs
Reported-by: Julien Lengrand-Lambert
Signed-off-by: Julien Lengrand-Lambert <julien@lengrandlambert.fr>
16 lines
466 B
Python
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",
|
|
],
|
|
) |