From 7c5d53881122046a97420ba085d865f59458ddde Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 16 Nov 2014 10:30:23 -0500 Subject: 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 --- setuptools/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'setuptools/__init__.py') 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 -- cgit v1.2.1