[fix] try to include static files during installation

This commit is contained in:
Laurent Peuch 2015-12-09 08:25:09 +01:00
parent 9ae0f7ca72
commit a412dc71c7

View File

@ -16,4 +16,9 @@ setup(name='prosopopee',
license= 'GPLv3+',
scripts=['prosopopee'],
keywords='',
include_package_data=True,
package_data={
'static': ['*.css', '*.js'],
'templates': ['*.html'],
},
)