diff options
author | Sylvain <syt@logilab.fr> | 2006-11-14 15:23:16 +0100 |
---|---|---|
committer | Sylvain <syt@logilab.fr> | 2006-11-14 15:23:16 +0100 |
commit | 141cb9fa299c21e110278e3acd55bb102f5b9db6 (patch) | |
tree | 84dd0b57b1e28c391fc43b2b7c6879ab4d7b0ac3 /setup.py | |
parent | c642a7e6d32438bc78947b6f967a6118f3fa0650 (diff) | |
download | logilab-common-141cb9fa299c21e110278e3acd55bb102f5b9db6.tar.gz |
fix setup
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -54,9 +54,10 @@ try: except ImportError: ext_modules = None -from __init__ import STD_BLACKLIST, IGNORED_EXTENSIONS -BASE_BLACKLIST = ('CVS', 'debian', 'dist', 'build', '__buildlog', '.svn') -IGNORED_EXTENSIONS = ('.pyc', '.pyo', '.elc') +STD_BLACKLIST = ('CVS', '.svn', '.hg', 'debian', 'dist', 'build') + +IGNORED_EXTENSIONS = ('.pyc', '.pyo', '.elc', '~') + def ensure_scripts(linux_scripts): |