From fa22b09e376321f24cfd1f11818229d5974f26b1 Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Fri, 30 Dec 2011 10:26:26 +0100 Subject: [PATCH] Prepares to packaging Minor changes in version numbers and READMEs Reported-by: Julien Lengrand-Lambert Signed-off-by: Julien Lengrand-Lambert --- CHANGES.txt | 2 +- README.markdown | 11 +++++++++++ README.txt | 8 ++++++++ setup.py | 3 +-- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 4a1adb0..f770e12 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1 +1 @@ -v0.1.0, 12-29-2011 -- Initial release. \ No newline at end of file +v0.1, 12-29-2011 -- Initial release. \ No newline at end of file diff --git a/README.markdown b/README.markdown index 3e80549..025df2a 100644 --- a/README.markdown +++ b/README.markdown @@ -51,6 +51,17 @@ Please note that the library is in current development, and is only available as ## Installation To use Tippy, you will need the last OpenCV version with Python bindings. A descriptive tutorial for Linux systems can be found [here](http://opencv.willowgarage.com/wiki/InstallGuide%20%3A%20Debian). +To be sure that you can use tippy, simply run python in command line and try to import OpenCV: +```Python +Python 2.7.2+ (default, Oct 4 2011, 20:03:08) +[GCC 4.6.1] on linux2 +Type "help", "copyright", "credits" or "license" for more information. +>>> import cv +``` + + +If no error appears, Tippy shouold be installed without problems. + Being in the very beginning of its development, Tippy yet is not available in packaged version. To use it, you will need to download the source file and include them in your application. diff --git a/README.txt b/README.txt index cafaaad..ace2480 100644 --- a/README.txt +++ b/README.txt @@ -36,6 +36,14 @@ A Installation ========= To use Tippy, you will need the last OpenCV version with Python bindings. A descriptive tutorial for Linux systems can be found here :http://opencv.willowgarage.com/wiki/InstallGuide%20%3A%20Debian. +To be sure that you can use tippy, simply run python in command line and try to import OpenCV :: + Python 2.7.2+ (default, Oct 4 2011, 20:03:08) + [GCC 4.6.1] on linux2 + Type "help", "copyright", "credits" or "license" for more information. + >>> import cv + +If no error appears, Tippy shouold be installed without problems. + Being in the very beginning of its development, Tippy yet is not available in packaged version. To use it, you will need to download the source file and include them in your application. diff --git a/setup.py b/setup.py index 42dca95..1fb4574 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,10 @@ from distutils.core import setup setup( name='Tippy', - version='0.1.0', + version='0.1', 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',