diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-11-16 10:30:23 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-11-16 10:30:23 -0500 |
| commit | 7c5d53881122046a97420ba085d865f59458ddde (patch) | |
| tree | 3bc51a54368651b8ecd7aafcbc0e3da11613a932 /setuptools/__init__.py | |
| parent | 4d4dbd3c5c69f63418ca2f22e9d6a3b8185b2e00 (diff) | |
| download | python-setuptools-git-7c5d53881122046a97420ba085d865f59458ddde.tar.gz | |
Trying a new technique. In this approach, setuptools is aware of its dependencies and when imported makes sure the vendored versions are present on sys.path.
--HG--
branch : feature/issue-229
Diffstat (limited to 'setuptools/__init__.py')
| -rw-r--r-- | setuptools/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 920dad38..c885555d 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -1,5 +1,7 @@ """Extensions to the 'distutils' for large or complex distributions""" +__import__('setuptools.bootstrap').bootstrap.ensure_deps() + import os import sys import distutils.core |
