summaryrefslogtreecommitdiff
path: root/setuptools/__init__.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2009-09-13 10:19:07 +0200
committerMartin v. Löwis <martin@v.loewis.de>2009-09-13 10:19:07 +0200
commit536c9838f3bd703c97b3816bb8b723e41cec7d9a (patch)
tree3c3b1c9a6c61260cec26263a26c46d8ade7303c3 /setuptools/__init__.py
parentf5adca61c9cb6797eaf9da2029c9132ec486b552 (diff)
downloadpython-setuptools-git-536c9838f3bd703c97b3816bb8b723e41cec7d9a.tar.gz
Provide registry for fixer packages.
--HG-- branch : distribute extra : rebase_source : 6a1259914751bdc18a32b98bd87680fb5fe94e70
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r--setuptools/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 05b65e4d..8c3eeb6d 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -31,6 +31,8 @@ run_2to3 = False
# If we run 2to3 on .py files, should we also convert docstrings?
# Default: yes; assume that we can detect doctests reliably
run_2to3_on_doctests = True
+# Package names for fixer packages
+lib2to3_fixer_packages = ['lib2to3.fixes']
def find_packages(where='.', exclude=()):
"""Return a list all Python packages found within directory 'where'