diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-01 07:30:29 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-01 07:33:07 +0200 |
| commit | 43e7711d25a63d53bddf6c6ae7b5d4c3b85152d2 (patch) | |
| tree | 22c04ae519d87dac8d6fd69a9a60f59f1fa8bdc2 | |
| parent | 567f4c376f19266e72f9cf67813fbea7d2812da6 (diff) | |
setup: Use a list instead of a tuple for 'classifiers'
Fixes a warning on Python 3.7:
Warning: 'classifiers' should be a list, got type 'tuple'
Maybe it could prevent other issues too:
https://github.com/pypa/pypi-legacy/issues/670
| -rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -65,7 +65,7 @@ setuptools.setup( "Examples": "https://github.com/ulfalizer/Kconfiglib/tree/master/examples", }, - classifiers=( + classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", @@ -85,5 +85,5 @@ setuptools.setup( "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", - ) + ] ) |
