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
 
@@ -86,15 +86,12 @@ classifiers = [
 

	
 

	
 
# additional files from project that goes somewhere in the filesystem
 
# 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.')
 

	
 
keywords = ' '.join([
 
    'kallithea', 'mercurial', 'git', 'code review',
 
@@ -151,13 +148,12 @@ setup(
 
    setup_requires=['PasteScript>=1.6.3',
 
                    'pytest-runner'],
 
    tests_require=['pytest'],
 
    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'}),
 
            ('templates/**.html', 'mako', {'input_encoding': 'utf-8'}),
 
            ('public/**', 'ignore', None)]},
 
    zip_safe=False,
0 comments (0 inline, 0 general)