From 658e94148cb8bfec128389c8b1dc9eb53bc8df99 Mon Sep 17 00:00:00 2001 From: Po-Chuan Hsieh Date: Thu, 25 Jun 2020 03:48:04 +0000 Subject: [PATCH] Remove warning message 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 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 94050e6..fd2b132 100755 --- a/setup.py +++ b/setup.py @@ -32,12 +32,12 @@ py_modules=["socks", "sockshandler"], install_requires=requirements, python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", - classifiers=( + classifiers=[ "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", - ), + ], )