Prepares to packaging

Minor changes in version numbers and READMEs
    
Reported-by: Julien Lengrand-Lambert
Signed-off-by: Julien Lengrand-Lambert <julien@lengrandlambert.fr>
This commit is contained in:
Julien Lengrand-Lambert
2011-12-30 10:26:26 +01:00
parent c3da7cada3
commit fa22b09e37
4 changed files with 21 additions and 3 deletions

View File

@@ -1 +1 @@
v0.1.0, 12-29-2011 -- Initial release.
v0.1, 12-29-2011 -- Initial release.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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',