reverted __main__ guard

This commit is contained in:
wiredfool 2014-06-27 08:57:49 -07:00
parent c567c3ec89
commit c23f900250

View File

@ -705,8 +705,8 @@ class pil_build_ext(build_ext):
finally:
os.unlink(tmpfile)
if __name__ == '__main__':
setup(
setup(
name=NAME,
version=VERSION,
description='Python Imaging Library (Fork)',
@ -739,5 +739,5 @@ if __name__ == '__main__':
keywords=["Imaging", ],
license='Standard PIL License',
zip_safe=True,
)
)
# End of file