Tidy up the parameters to the setup() function.

This commit is contained in:
Charles Leifer
2018-07-18 15:32:03 -05:00
parent 0f08d8d8d2
commit 4ea1e23cb3
+11 -2
View File
@@ -95,7 +95,7 @@ def _do_setup(c_extensions, sqlite_extensions):
long_description=readme,
author='Charles Leifer',
author_email='coleifer@gmail.com',
url='http://github.com/coleifer/peewee/',
url='https://github.com/coleifer/peewee/',
packages=['playhouse'],
py_modules=['peewee', 'pwiz'],
classifiers=[
@@ -104,9 +104,18 @@ def _do_setup(c_extensions, sqlite_extensions):
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
scripts = ['pwiz.py'],
license='MIT License',
platforms=['any'],
scripts=['pwiz.py'],
zip_safe=False,
cmdclass={'build_ext': _PeeweeBuildExt},
ext_modules=cythonize(ext_modules))