From 5f3cb7e0a90474cc3ea6f7bb6918cc950cb01d92 Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Wed, 11 Apr 2012 03:55:58 -0700 Subject: Separated out the classifiers. --- setup.py | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 29a00b6..5902d4b 100644 --- a/setup.py +++ b/setup.py @@ -61,6 +61,20 @@ HISTORY_PATH = 'HISTORY.rst' LICENSE_PATH = 'LICENSE' README_PATH = 'README.rst' +CLASSIFIERS = ( + 'Development Status :: 4 - Beta', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.4', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.1', + 'Programming Language :: Python :: 3.2', +) + def read(path): """ @@ -182,19 +196,7 @@ def main(sys_argv): entry_points = { 'console_scripts': ['pystache=pystache.commands:main'], }, - classifiers = ( - 'Development Status :: 4 - Beta', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.4', - 'Programming Language :: Python :: 2.5', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.1', - 'Programming Language :: Python :: 3.2', - ), + classifiers = CLASSIFIERS, **extra ) -- cgit v1.2.1