Remove setup.py entirely

This commit is contained in:
Shane McDonald
2022-06-27 14:15:32 -04:00
parent cbea36745e
commit 6a3f9690b0
2 changed files with 4 additions and 3 deletions

21
tools/scripts/egg_info_dev Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/env python3
import setuptools
from setuptools.command.egg_info import egg_info as _egg_info
class egg_info_dev(_egg_info):
def find_sources(self):
# when we generate a .egg-info for the development
# environment, it's not really critical that we
# parse the MANIFEST.in (which is actually quite expensive
# in Docker for Mac)
pass
if __name__ == "__main__":
setuptools.setup(
script_name = 'setup.py',
script_args = ['egg_info_dev'],
cmdclass={'egg_info_dev': egg_info_dev},
)