Changeset - 272cb88d97c2
[Not reviewed]
default
0 1 0
Søren Løvborg - 10 years ago 2016-03-07 18:45:14
sorenl@unity3d.com
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.
1 file changed with 0 insertions and 4 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
@@ -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'}),
0 comments (0 inline, 0 general)