Add output to determine if egg-info is being created.

This commit is contained in:
Jason R. Coombs 2015-01-02 21:49:37 -05:00
parent 41f2c5ec8d
commit 07e879f2f2
1 changed files with 4 additions and 2 deletions

View File

@ -28,8 +28,10 @@ minimal_egg_info = textwrap.dedent("""
""")
def ensure_egg_info():
if not os.path.exists('setuptools.egg-info'):
build_egg_info()
if os.path.exists('setuptools.egg-info'):
return
print("adding minimal entry_points")
build_egg_info()
def build_egg_info():