Switches to 0.8.2. README to be changed

This commit is contained in:
2012-06-12 22:08:27 +02:00
parent 6a856914e7
commit e77a9eeaf6
12 changed files with 22 additions and 21 deletions

1
.gitignore vendored
View File

@@ -6,3 +6,4 @@ MANIFEST
packaging
doc/build
*~
README.rst

View File

@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding//doc/source/conf.py=utf-8

View File

@@ -1,8 +1,7 @@
"""
.. module:: FaceMovifier
:platform: Unix, Windows
:synopsis: Higher class of the application. Used to handle the command line interface.
Direclty interfaces user commands with FaceMovie actions.
:synopsis: Higher class of the application. Used to handle the command line interface. Direclty interfaces user commands with FaceMovie actions.
.. moduleauthor:: Julien Lengrand-Lambert <jlengrand@gmail.com>

View File

@@ -192,4 +192,4 @@ I would enjoy having feedback if you like this idea, or even used it. Send me a
You can contact me at julien at lengrand dot fr, or on my [current website](http://www.lengrand.fr).
Version : 0.8.1
Version : 0.8.2

View File

@@ -8,7 +8,7 @@
<!-- Properties -->
<property name="old.version" value="0.8"/>
<property name="version" value="0.9"/>
<property name="version" value="0.8.2"/>
<property name="base.dir" value="."/>
<property name="src.dir" value="${base.dir}/facemovie"/>
@@ -66,6 +66,9 @@
<!-- EXE : Generates single Windows executable -->
<target name="exe" depends="init">
<exec dir="${base.dir}" executable="pandoc.exe">
<arg line="${base.dir}/README.markdown -o ${base.dir}/README.rst"/>
</exec>
<py-run script="setup.py" pythonpath="${base.dir}" optimize="0">
<arg value="build"/>
</py-run>
@@ -122,9 +125,6 @@
<!-- package.pipy : Creates the application package for Windows -->
<target name="package.pipy" depends="init,package.create">
<echo message="Creating Windows Pipy archive"/>
<exec dir="${base.dir}" executable="pandoc.exe">
<arg line="${base.dir}/README.markdown -o ${base.dir}/README.rst"/>
</exec>
<py-run script="setup.py" pythonpath="${base.dir}" optimize="0">
<arg value="sdist"/>
</py-run>

View File

@@ -20,7 +20,7 @@ FaceMovie
Facemoviefier
=============
.. automodule:: facemovie.Facemoviefier
.. automodule:: Facemoviefier
:members:
Eye

View File

@@ -1,10 +1,7 @@
"""
.. module:: Facemovie
:platform: Unix, Windows
:synopsis: Main class of the application. Contains the core image processing
functions.
Plays the role of a controller for the application, as it supports the
communication layer with the end user interface.
:synopsis: Main class of the application. Contains the core image processing functions.Plays the role of a controller for the application, as it supports the communication layer with the end user interface.
.. moduleauthor:: Julien Lengrand-Lambert <jlengrand@gmail.com>

View File

@@ -1,8 +1,7 @@
"""
.. module:: Guy
:platform: Unix, Windows
:synopsis: Class defining a Guy in the sense of the FaceMovie. Corresponds
to one input image. An input folder is transformed in fact to a list of guys.
:synopsis: Class defining a Guy in the sense of the FaceMovie. Corresponds to one input image. An input folder is transformed in fact to a list of guys.
.. moduleauthor:: Julien Lengrand-Lambert <jlengrand@gmail.com>

View File

@@ -1,6 +1,7 @@
"""
Aims at helping you create videos of yourself over time, using photos as input.
Take great pictures, FaceMovie will do the rest !
.. module:: FaceMovifier
:platform: Unix, Windows
:synopsis: Aims at helping you create videos of yourself over time, using photos as input. Take great pictures, FaceMovie will do the rest !
.. moduleauthor:: Julien Lengrand-Lambert <jlengrand@gmail.com>

View File

@@ -1,5 +1,8 @@
"""
This package aims at containing all libraries or external elements needed to create the FaceMovie
.. module:: FaceMovifier
:platform: Unix, Windows
:synopsis: This package aims at containing all libraries or external elements needed to create the FaceMovie
.. moduleauthor:: Julien Lengrand-Lambert <jlengrand@gmail.com>

View File

@@ -1,8 +1,7 @@
"""
.. module:: training_types
:platform: Unix, Windows
:synopsis: Dumb class aiming at regrouping all information concerning the trainers for classification.
Each entry is linked to a label, corresponding to a different type of recognition (frontal, profile, . . . )
:synopsis: Dumb class aiming at regrouping all information concerning the trainers for classification. Each entry is linked to a label, corresponding to a different type of recognition (frontal, profile, . . . )
.. moduleauthor:: Julien Lengrand-Lambert <jlengrand@gmail.com>

View File

@@ -46,7 +46,7 @@ haar_files = find_data_files('facemovie','',['haarcascades/*.xml'])
setup(
name = "Facemovie",
version = "0.8.1",
version = "0.8.2",
author = "Julien Lengrand-Lambert",
author_email = "jlengrand@gmail.com",
description = ("Take one picture of yourself a day, automatically generate a movie!"),
@@ -54,7 +54,7 @@ setup(
keywords = "image_processing computer_vision one_picture_a_day photography",
url = "http://jlengrand.github.com/FaceMovie/",
download_url = "http://jlengrand.github.com/FaceMovie/",
packages=['facemovie', 'facemovie.lib', 'facemovie.haarcascades'],
packages=['facemovie', 'facemovie.lib', 'haarcascades'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",