From 1dd7cd04d7bc69dccb1f4d8041080a80c23714d0 Mon Sep 17 00:00:00 2001 From: Thilo Maurer Date: Wed, 25 Jul 2018 22:14:14 +0200 Subject: [PATCH] classifiers should be an array --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6bda014b1..b4e6e335f 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ install_requires=DEPENDENCIES, license='Apache 2.0', keywords='google auth oauth client', - classifiers=( + classifiers=[ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', @@ -57,5 +57,5 @@ 'Operating System :: MacOS :: MacOS X', 'Operating System :: OS Independent', 'Topic :: Internet :: WWW/HTTP', - ), + ], )