trove classifiers should be a list, not a tuple
This commit is contained in:
parent
bd44cc900e
commit
566b60d380
4
setup.py
4
setup.py
@ -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',),
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user