Completes setup.py to include package data

Adds some samples to feed the algorithm from anywhere
This commit is contained in:
2012-08-01 17:58:45 +02:00
parent dd1a8d2d31
commit 3e0d7190e4
9 changed files with 3 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

@@ -51,7 +51,7 @@ setup(
version = "1.0",
author = "Julien Lengrand-Lambert",
author_email = "julien@lengrand.fr",
description = ("Take one picture of yourself a day, automatically generate a movie!"),
description = ("Timelapse creation using Face Recognition"),
license = "BSD License",
keywords = "image_processing computer_vision one_picture_a_day photography",
url = "http://jlengrand.github.com/FaceMovie/",
@@ -70,5 +70,6 @@ setup(
],
#data_files = data_files,
scripts=['Ivolution.py', 'Facemoviefier.py'],
package_dir={'haarcascades' : 'ivolution/data/haarcascades', 'samples':'ivolution/data/inputs/sample-test', 'ui':'ivolution/data/ui', 'media':'ivolution/data/media'}
package_dir={'data' : 'ivolution/data'},
package_data={'data' : ['haarcascades/*.xml'], 'data' : ['samples/*'], 'data' : ['ui/*'], 'data' : ['media/*']}
)