From e096f90a179743427074e8899bc13bf1879b2ba6 Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Thu, 7 Jun 2012 23:12:20 +0200 Subject: [PATCH] Finishes first version of ant script. Everything seem to be automated --- MANIFEST.in | 2 +- build.xml | 46 ++++++++++++++++++++++++++++++++++++---------- setup.py | 5 ++--- 3 files changed, 39 insertions(+), 14 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 0dbd96d..0532301 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,4 +6,4 @@ recursive-include docs * include CHANGES include LICENSE include *.sh -include README.markdown \ No newline at end of file +include README.rst \ No newline at end of file diff --git a/build.xml b/build.xml index b4184bd..922e3e9 100644 --- a/build.xml +++ b/build.xml @@ -1,13 +1,13 @@ - + - + @@ -22,7 +22,7 @@ - + @@ -48,6 +48,7 @@ + @@ -58,13 +59,16 @@ - + + + + @@ -84,7 +88,7 @@ - + @@ -108,8 +112,8 @@ - - + + @@ -117,9 +121,31 @@ - - - + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/setup.py b/setup.py index 7c4a538..5442336 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,6 @@ import os import glob import py2exe - import facemovie sys.argv.append('py2exe') @@ -46,7 +45,7 @@ haar_files = find_data_files('facemovie','',['haarcascades/*.xml']) setup( name = "Facemovie", - version = "0.4", + version = "0.9", author = "Julien Lengrand-Lambert", author_email = "jlengrand@gmail.com", description = ("An application aiming at creating a video of faces for people taking 'one picture a day' of themselves"), @@ -55,7 +54,7 @@ setup( url = "https://github.com/jlengrand/FaceMovie", download_url = "https://github.com/jlengrand/FaceMovie", # FIXME : To be updated packages=['facemovie', 'facemovie.lib', 'facemovie.haarcascades'], - long_description=read('README.markdown'), + long_description=read('README.rst'), classifiers=[ "Development Status :: 3 - Alpha", "Topic :: Multimedia :: Graphics",