From 183a306ef87fd15df27dc4327182a944033ea3a0 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 19 Jan 2021 20:37:26 -0500 Subject: Remove bootstrap and tox-pip and instead rely on pep517. --- setup.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 28d3dada..378fda14 100755 --- a/setup.py +++ b/setup.py @@ -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' @@ -189,5 +178,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) -- cgit v1.2.1