From 074df60b1015c7ffdc27c6f979b2acfdc1db4f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 6 Aug 2019 08:31:04 +0200 Subject: [PATCH] use include_package_data=True to get all resources (#35042) --- setup.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 5d36eb1..8fe022c 100755 --- a/setup.py +++ b/setup.py @@ -86,16 +86,7 @@ setup(name='authentic2-auth-fedict', package_dir={ '': 'src', }, - package_data={ - 'authentic2_auth_fedict': [ - 'templates/authentic2_auth_fedict/*.html', - 'static/authentic2_auth_fedict/img/*.png', - 'static/authentic2_auth_fedict/css/*.css', - 'static/authentic2_auth_fedict/js/*.js', - 'locale/fr/LC_MESSAGES/django.po', - 'locale/fr/LC_MESSAGES/django.mo', - ], - }, + include_package_data=True, install_requires=[ 'authentic2', ],