From 4545e4a818d6398f1a14cebb7c19434f83768cdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Sun, 4 Oct 2015 22:16:44 +0200 Subject: [PATCH] submission to pypi OK --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 8b846cd..8e62c44 100644 --- a/setup.py +++ b/setup.py @@ -9,9 +9,7 @@ from distutils.core import setup, Extension requires = ['pillow'] -kw = { 'zip_safe': False, - 'install_requires': requires - } +kw = {'install_requires': requires} def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() @@ -33,7 +31,7 @@ setup( "Environment :: Console", "Topic :: Utilities", "Operating System :: OS Independent", - "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)" ], **kw )