diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-02-01 10:11:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 10:11:24 -0500 |
commit | a96ab21c5da30e71daa69f5b645097a86e8dc492 (patch) | |
tree | b512429118360703a242b8bfcda6746e9c9a4800 /setup.py | |
parent | e1ffc2abbae4f2aa78dd09ee9827d754b7702b7b (diff) | |
parent | e3e7ff854038788d56d6d7f6624357b81341e876 (diff) | |
download | python-setuptools-git-a96ab21c5da30e71daa69f5b645097a86e8dc492.tar.gz |
Merge pull request #2543 from pypa/bugfix/1996-no-bootstrap
Remove bootstrap script
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -10,17 +10,6 @@ from setuptools.command.install import install here = os.path.dirname(__file__) -def require_metadata(): - "Prevent improper installs without necessary metadata. See #659" - egg_info_dir = os.path.join(here, 'setuptools.egg-info') - if not os.path.exists(egg_info_dir): - msg = ( - "Cannot build setuptools without metadata. " - "Run `bootstrap.py`." - ) - raise RuntimeError(msg) - - def read_commands(): command_ns = {} cmd_module_path = 'setuptools/command/__init__.py' @@ -170,5 +159,4 @@ setup_params = dict( if __name__ == '__main__': # allow setup.py to run from another directory here and os.chdir(here) - require_metadata() dist = setuptools.setup(**setup_params) |