From 489f58ced52fc298c38534ecbed2c29ca8a126dd Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Mon, 6 Aug 2018 23:04:50 -0700 Subject: [PATCH] represent classifiers as list instead of tuple --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f47f15d3..670a7dc7 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ #!/usr/bin/env python # Learn more: https://github.com/kennethreitz/setup.py - import os import re import sys @@ -83,7 +82,7 @@ setup( install_requires=requires, license=about['__license__'], zip_safe=False, - classifiers=( + classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Natural Language :: English', @@ -98,7 +97,7 @@ setup( 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy' - ), + ], cmdclass={'test': PyTest}, tests_require=test_requirements, extras_require={