submission to pypi OK

This commit is contained in:
Cédric Bonhomme 2015-10-04 22:16:44 +02:00
parent ee48087222
commit 4545e4a818

View file

@ -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
)