From 8982e0ac1a56b7ba60af6398e2ba76b879aba580 Mon Sep 17 00:00:00 2001 From: Piotr Date: Thu, 31 Jan 2019 14:32:36 +0100 Subject: [PATCH] setup.py: make classifiers a list Warning: 'classifiers' should be a list, got type 'tuple' --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 75fe949a3..8a39ba9a4 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def read(fname): package_data={'carbon': ['*.xml']}, data_files=install_files, install_requires=['Twisted', 'txAMQP', 'cachetools', 'urllib3'], - classifiers=( + classifiers=[ 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: Apache Software License', @@ -55,6 +55,6 @@ def read(fname): 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', - ), + ], zip_safe=False )