diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2013-03-10 13:19:18 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-03-10 13:19:18 -0400 |
| commit | 74ac500de5709742b769c8bde05817b3bcdbebfe (patch) | |
| tree | 304569704db491ad9035ed3e8208ed16e1520ad5 /setup.py | |
| parent | cfd4a052e4f899269435180f87a1615417513385 (diff) | |
| download | python-setuptools-git-74ac500de5709742b769c8bde05817b3bcdbebfe.tar.gz | |
Removed references to removed methods in ez_setup
--HG--
branch : Setuptools-Distribute merge
extra : source : 4b38838e17b59d3705735e111219e20d89632481
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -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) |
