Skip to content

Commit

Permalink
Remove warning message
Browse files Browse the repository at this point in the history
The warning is as follows:
Warning: 'classifiers' should be a list, got type 'tuple'

Reference:	https://www.python.org/dev/peps/pep-0301/#distutils-trove-classification
  • Loading branch information
sunpoet committed Jun 25, 2020
1 parent 924c751 commit e92a964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -29,7 +29,7 @@
package_data={'': ['LICENSE']},
include_package_data=True,
license='Apache 2.0',
classifiers=(
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
Expand All @@ -41,7 +41,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
),
],
extras_require={
'idna2008': ['idna']
}
Expand Down

0 comments on commit e92a964

Please sign in to comment.