From 8468e915d354af475ef47363cccafdc9d458b7a8 Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Wed, 6 Jul 2005 02:10:48 +0000 Subject: Made ``easy_install`` a standard ``setuptools`` command, moving it from the ``easy_install`` module to ``setuptools.command.easy_install``. Note that if you were importing or extending it, you must now change your imports accordingly. ``easy_install.py`` is still installed as a script, but not as a module. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041079 --- setuptools/dist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/dist.py') diff --git a/setuptools/dist.py b/setuptools/dist.py index ebcc12f9..590ea165 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -395,7 +395,7 @@ class Distribution(_Distribution): self.run_command(cmd) def install_eggs(self): - from easy_install import easy_install + from setuptools.command.easy_install import easy_install cmd = easy_install(self, args="x") cmd.ensure_finalized() # finalize before bdist_egg munges install cmd self.run_command('bdist_egg') -- cgit v1.2.1