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 | 0f1e2975bbe58ff397951bf0425b829efe1b0059 (patch) | |
| tree | d57ba97fa2bee025df67a3117ca82a86ee3d3e86 /setup.py | |
| parent | dd6da889388dc3cdce444ec008a3035131c68c10 (diff) | |
| download | python-setuptools-bitbucket-0f1e2975bbe58ff397951bf0425b829efe1b0059.tar.gz | |
Removed references to removed methods in ez_setup
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)  | 
