Adds all topics. Remove automatically generated MANIFEST file

This commit is contained in:
2012-05-22 19:02:18 +02:00
parent 0ac42a2e34
commit 011926f4b4
2 changed files with 8 additions and 16 deletions

View File

@@ -1,14 +0,0 @@
# file GENERATED by distutils, do NOT edit
setup.py
facemovie\Eye.py
facemovie\Face.py
facemovie\FaceParams.py
facemovie\Facemovie.py
facemovie\Facemoviefier.py
facemovie\Guy.py
facemovie\__init__.py
facemovie\training_types.py
facemovie\haarcascades\__init__.py
facemovie\lib\__init__.py
facemovie\lib\exif.py
test\test_script.py

View File

@@ -20,18 +20,24 @@ setup(
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"),
license = "BSD",
license = "BSD License",
keywords = "image_processing computer_vision one_picture_a_day photography",
url = "https://github.com/jlengrand/FaceMovie",
download_url = "https://github.com/jlengrand/FaceMovie", # FIXME : To be updated
packages=['facemovie', 'facemovie.lib', 'facemovie.haarcascades'],
package_data={'facemovie': ['haarcascades/*.xml']}, # Adds xml files to the lib
long_description=read('README.markdown'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Topic :: Multimedia :: Graphics",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: Microsoft",
"Programming Language :: Python :: 2 :: Only",
],
platforms ={"Linux"},
options = {'py2exe': {'bundle_files': 1, 'includes': ['numpy'] } },
console=['facemovie/Facemoviefier.py'],
zipfile = None,