setup.py: remove package_data clause, we use include_package_data=True and MANIFEST.in instead

This commit is contained in:
Benjamin Dauvergne 2013-06-06 09:49:16 +02:00
parent 98339b258f
commit d08e6547af
1 changed files with 0 additions and 5 deletions

View File

@ -81,11 +81,6 @@ setup(name='django-journal',
author_email="info@entrouvert.com",
packages=find_packages(os.path.dirname(__file__) or '.'),
include_package_data=True,
package_data={'django_journal':
['locale/*/LC_MESSAGES/*.po',
'locale/*/LC_MESSAGES/*.mo',
'static/journal/css/*.css',
'static/journal/images/*.png']},
cmdclass={'build': build, 'install_lib': install_lib,
'compile_translations': compile_translations,
'sdist': sdist},