Skip to content

Commit

Permalink
Switch classifiers from a tuple to a list
Browse files Browse the repository at this point in the history
This is a workaround for pypa/setuptools#3707
  • Loading branch information
JacobCallahan committed Nov 23, 2022
1 parent 78914df commit 65bffbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -41,13 +41,13 @@
'unittest2',
],
license='GNU GPL v3.0',
classifiers=(
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
),
],
)

0 comments on commit 65bffbb

Please sign in to comment.