From 4997be19c7c064d66d5712d85e90c01bfc634167 Mon Sep 17 00:00:00 2001 From: Thilo Maurer Date: Wed, 1 Aug 2018 23:33:08 +0200 Subject: [PATCH] Make classifiers in setup.py an array. (#280) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 582d08f40..1d603c780 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', - ), + ], )