Commit 5f3cb7e0 by Chris Jerdonek

Separated out the classifiers.

parent 28a74f3c
...@@ -61,6 +61,20 @@ HISTORY_PATH = 'HISTORY.rst' ...@@ -61,6 +61,20 @@ HISTORY_PATH = 'HISTORY.rst'
LICENSE_PATH = 'LICENSE' LICENSE_PATH = 'LICENSE'
README_PATH = 'README.rst' 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): def read(path):
""" """
...@@ -182,19 +196,7 @@ def main(sys_argv): ...@@ -182,19 +196,7 @@ def main(sys_argv):
entry_points = { entry_points = {
'console_scripts': ['pystache=pystache.commands:main'], 'console_scripts': ['pystache=pystache.commands:main'],
}, },
classifiers = ( classifiers = 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',
),
**extra **extra
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment