merge from upstream

This commit is contained in:
Adrien Beudin 2016-02-24 16:53:08 +01:00
commit f103593cd9

View File

@ -1,7 +1,6 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding:Utf-8 -*- # -*- coding:Utf-8 -*-
import os
from setuptools import setup from setuptools import setup
try: try:
@ -30,6 +29,6 @@ setup(name='prosopopee',
keywords='', keywords='',
include_package_data=True, include_package_data=True,
package_data={ package_data={
'prosopopee': ['themes/*/*/*/*'] + ['themes/*/templates/*.html'] + ['themes/*/templates/section/*.html'] 'prosopopee': ['themes/*/*/*/*', 'themes/*/templates/*.html', 'themes/*/templates/section/*.html'],
}, },
) )