Files
Tippy/setup.py
Julien Lengrand-Lambert 8f3a77ceb5 Prepares to packaging
Creates all necessary files. 
Instructions are taken from here : 
http://guide.python-distribute.org/creation.html

Some steps are still to be performed.

Reported-by: Julien Lengrand-Lambert
Signed-off-by: Julien Lengrand-Lambert <julien@lengrandlambert.fr>
2011-12-29 17:00:16 +01:00

17 lines
486 B
Python

from distutils.core import setup
setup(
name='Tippy',
version='0.1.0',
author='Julien Lengrand-Lambert',
author_email='julien@lengrand.fr',
packages=['tippy', 'tippy.tests', 'examples'],
scripts=[''],
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",
],
)