summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetuptools/command/easy_install.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 7c0dfa99..62c24d77 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -217,7 +217,9 @@ class easy_install(Command):
def finalize_options(self):
if self.version:
- print('setuptools %s' % get_distribution('setuptools').version)
+ dist = get_distribution('setuptools')
+ print('setuptools %s from %s (python %s)' % (
+ dist.version, dist.location, sys.version[:3]))
sys.exit()
py_version = sys.version.split()[0]