changeset 5760:272cb88d97c2

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.
author Søren Løvborg <sorenl@unity3d.com>
date Mon, 07 Mar 2016 18:45:14 +0100
parents d5e16407bdbb
children 0c29e737db23
files setup.py
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Mon Mar 14 00:36:08 2016 +0100
+++ b/setup.py	Mon Mar 07 18:45:14 2016 +0100
@@ -89,9 +89,6 @@
 # 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 @@
     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'}),