# HG changeset patch # User Søren Løvborg # Date 2016-03-07 18:45:14 # Node ID 272cb88d97c29f755421607b38fc8e04db799924 # Parent d5e16407bdbb159e26b64824c00f047f31878e08 setup.py: remove unused package_data Per the setuptools documentation, package_data is ignored if include_package_data is True, and indeed, we instead use MANIFEST.in. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -89,9 +89,6 @@ classifiers = [ # relative to sys.prefix data_files = [] -# additional files that goes into package itself -package_data = {'kallithea': ['i18n/*/LC_MESSAGES/*.mo', ], } - description = ('Kallithea is a fast and powerful management tool ' 'for Mercurial and Git with a built in push/pull server, ' 'full text search and code-review.') @@ -154,7 +151,6 @@ setup( data_files=data_files, packages=packages, include_package_data=True, - package_data=package_data, message_extractors={'kallithea': [ ('**.py', 'python', None), ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),