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,39 +705,41 @@ class pil_build_ext(build_ext):
finally: finally:
os.unlink(tmpfile) os.unlink(tmpfile)
if __name__ == '__main__':
setup( setup(
name=NAME, name=NAME,
version=VERSION, version=VERSION,
description='Python Imaging Library (Fork)', description='Python Imaging Library (Fork)',
long_description=( long_description=(
_read('README.rst') + b'\n' + _read('README.rst') + b'\n' +
_read('CHANGES.rst')).decode('utf-8'), _read('CHANGES.rst')).decode('utf-8'),
author='Alex Clark (fork author)', author='Alex Clark (fork author)',
author_email='aclark@aclark.net', author_email='aclark@aclark.net',
url='http://python-pillow.github.io/', url='http://python-pillow.github.io/',
classifiers=[ classifiers=[
"Development Status :: 6 - Mature", "Development Status :: 6 - Mature",
"Topic :: Multimedia :: Graphics", "Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera", "Topic :: Multimedia :: Graphics :: Capture :: Digital Camera",
"Topic :: Multimedia :: Graphics :: Capture :: Scanners", "Topic :: Multimedia :: Graphics :: Capture :: Scanners",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture", "Topic :: Multimedia :: Graphics :: Capture :: Screen Capture",
"Topic :: Multimedia :: Graphics :: Graphics Conversion", "Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Multimedia :: Graphics :: Viewers", "Topic :: Multimedia :: Graphics :: Viewers",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3", ], "Programming Language :: Python :: 3.3",
cmdclass={"build_ext": pil_build_ext}, "Programming Language :: Python :: 3.4",
ext_modules=[Extension("PIL._imaging", ["_imaging.c"])], ],
include_package_data=True, cmdclass={"build_ext": pil_build_ext},
packages=find_packages(), ext_modules=[Extension("PIL._imaging", ["_imaging.c"])],
scripts=glob.glob("Scripts/pil*.py"), include_package_data=True,
test_suite='PIL.tests', packages=find_packages(),
keywords=["Imaging", ], scripts=glob.glob("Scripts/pil*.py"),
license='Standard PIL License', test_suite='PIL.tests',
zip_safe=True, keywords=["Imaging", ],
) license='Standard PIL License',
zip_safe=True,
)
# End of file # End of file