.git exclude wildcard

This commit is contained in:
Frank 2015-10-24 21:09:20 -04:00
parent 5bb193800f
commit 65584c30ca
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ class Configuration(RawConfigParser):
exclude = []
if self.has_option(section, option):
exclude = self.get(section, option)
exclude += [".git", ".gitignore", "README", "build/", "dist/",
exclude += [".git*", "README", "build/", "dist/",
"setup.py", "MANIFEST", "PKG-INFO", "*.pyc",
self.get("setup", "changelog"),
self.get("setup", "package-root")]