summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-03-10 13:19:18 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-03-10 13:19:18 -0400
commit0f1e2975bbe58ff397951bf0425b829efe1b0059 (patch)
treed57ba97fa2bee025df67a3117ca82a86ee3d3e86 /setup.py
parentdd6da889388dc3cdce444ec008a3035131c68c10 (diff)
downloadpython-setuptools-bitbucket-0f1e2975bbe58ff397951bf0425b829efe1b0059.tar.gz
Removed references to removed methods in ez_setup
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/setup.py b/setup.py
index d21ff023..6cd15f25 100755
--- a/setup.py
+++ b/setup.py
@@ -107,21 +107,6 @@ class test(_test):
f.close()
-def _buildout_marker():
- command = os.environ.get('_')
- if command:
- return 'buildout' in os.path.basename(command)
-
-def _being_installed():
- if _buildout_marker():
- # Installed by buildout, don't mess with a global setuptools.
- return False
- return 'install' in sys.argv[1:]
-
-if _being_installed():
- from ez_setup import _before_install
- _before_install()
-
# return contents of reStructureText file with linked issue references
def _linkified(rst_path):
bitroot = 'http://bitbucket.org/tarek/distribute'
@@ -236,7 +221,3 @@ dist = setup(
""").strip().splitlines(),
scripts = scripts,
)
-
-if _being_installed():
- from ez_setup import _after_install
- _after_install(dist)