# HG changeset patch # User Julien Cristau # Date 1381401035 -7200 # Node ID ae3fd6f8da7605134a158a7b22a400fe7ca68484 # Parent ea7fd598ced98ec74c88c1ae13f95cabb8b6f81e [packaging] setup.py: don't exclude skeleton/debian/* from being installed Closes #3192725. diff -r ea7fd598ced9 -r ae3fd6f8da76 setup.py --- a/setup.py Wed Sep 11 18:42:34 2013 +0200 +++ b/setup.py Thu Oct 10 12:30:35 2013 +0200 @@ -63,7 +63,7 @@ ext_modules = getattr(__pkginfo__, 'ext_modules', None) package_data = getattr(__pkginfo__, 'package_data', {}) -BASE_BLACKLIST = ('CVS', 'debian', 'dist', 'build', '__buildlog') +BASE_BLACKLIST = ('CVS', 'dist', 'build', '__buildlog') IGNORED_EXTENSIONS = ('.pyc', '.pyo', '.elc')