1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/data/packages/HackedEggInfo/setup.py
2021-08-20 13:37:49 +01:00

16 lines
303 B
Python

from setuptools import setup
from setuptools.command import egg_info as orig_egg_info
class egg_info(orig_egg_info.egg_info):
def run(self):
orig_egg_info.egg_info.run(self)
setup(
name="hackedegginfo",
version="0.0.0",
cmdclass={"egg_info": egg_info},
zip_safe=False,
)