summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-10-01 07:30:29 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-10-01 07:33:07 +0200
commit43e7711d25a63d53bddf6c6ae7b5d4c3b85152d2 (patch)
tree22c04ae519d87dac8d6fd69a9a60f59f1fa8bdc2 /setup.py
parent567f4c376f19266e72f9cf67813fbea7d2812da6 (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
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 0bf9a08..b9ee04b 100644
--- a/setup.py
+++ b/setup.py
@@ -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",
- )
+ ]
)