Merge pull request #742 from wiredfool/pyroma

Pyroma fix
This commit is contained in:
Hugo 2014-06-28 22:03:16 +03:00
commit f8ad69431e

View File

@ -705,7 +705,7 @@ class pil_build_ext(build_ext):
finally:
os.unlink(tmpfile)
if __name__ == '__main__':
setup(
name=NAME,
version=VERSION,
@ -729,7 +729,9 @@ if __name__ == '__main__':
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3", ],
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
cmdclass={"build_ext": pil_build_ext},
ext_modules=[Extension("PIL._imaging", ["_imaging.c"])],
include_package_data=True,