From 43e7711d25a63d53bddf6c6ae7b5d4c3b85152d2 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Mon, 1 Oct 2018 07:30:29 +0200 Subject: 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 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') 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", - ) + ] ) -- cgit v1.2.3