From 98ef24e9ce2e882e61107870fd063771abf56ca3 Mon Sep 17 00:00:00 2001 From: Grokzen Date: Tue, 13 Mar 2018 23:07:24 +0100 Subject: [PATCH] Fix a bug with setup.py and the new pypi.org backend --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 151a03c..5df5e7f 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ 'PyYAML>=3.11', 'python-dateutil>=2.4.2', ], - classifiers=( + classifiers=[ # 'Development Status :: 1 - Planning', # 'Development Status :: 2 - Pre-Alpha', # 'Development Status :: 3 - Alpha', @@ -51,5 +51,5 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', - ) + ], )