mirror of
https://github.com/jlengrand/Tippy.git
synced 2026-03-10 08:51:16 +00:00
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>
17 lines
486 B
Python
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",
|
|
],
|
|
) |