trove classifiers should be a list, not a tuple

This commit is contained in:
Ori Livneh 2016-04-25 14:09:07 -07:00
parent bd44cc900e
commit 566b60d380

View File

@ -38,12 +38,12 @@ setup(
url='https://github.com/atdt/monotonic', url='https://github.com/atdt/monotonic',
description='An implementation of time.monotonic() for Python 2 & < 3.3', description='An implementation of time.monotonic() for Python 2 & < 3.3',
long_description=__doc__, long_description=__doc__,
classifiers=( classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License', 'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
), ],
py_modules=('monotonic',), py_modules=('monotonic',),
) )