From 863ccf561ab31808e3c0a7f42ee9532153083706 Mon Sep 17 00:00:00 2001 From: Vinod Kurup Date: Mon, 28 Nov 2016 13:41:23 -0500 Subject: [PATCH] Use list of classifiers --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index cdccbdc..ecf8155 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read_file(filename): url='https://github.com/caktus/django-email-bandit', license='BSD', description=' '.join(__import__('bandit').__doc__.splitlines()).strip(), - classifiers=( + classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', @@ -37,7 +37,7 @@ def read_file(filename): 'Programming Language :: Python :: 3.5', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules', - ), + ], long_description=read_file('README.rst'), test_suite="runtests.runtests", zip_safe=False,