aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2010-07-14 12:07:43 -0400
committerWaylan Limberg <waylan@gmail.com>2010-07-14 12:07:43 -0400
commita9f85f47c1cf7b6436810d7c9bba4cd9f62868af (patch)
treebf60a0af0795fc290b31a10de2c2677b40315ba7 /setup.py
parent542131b209f856f0355cd08a71753cb7fd5d0a76 (diff)
downloadmarkdown-a9f85f47c1cf7b6436810d7c9bba4cd9f62868af.tar.gz
markdown-a9f85f47c1cf7b6436810d7c9bba4cd9f62868af.tar.bz2
markdown-a9f85f47c1cf7b6436810d7c9bba4cd9f62868af.zip
Made some changes to setup.py. Markdown version is now set to 2.1.0.Dev as it should have been for some time now. Also updated classifiers to correctly represent the Python versions we support. Removed 2.3 and added 2.7.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index ac3ff32..131ee4b 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys, os
from distutils.core import setup
from distutils.command.install_scripts import install_scripts
-version = '2.0.3'
+version = '2.1.0.Dev'
# The command line script name. Currently set to "markdown_py" so as not to
# conflict with the perl implimentation (which uses "markdown"). We can't use
@@ -49,10 +49,10 @@ data = dict(
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.3',
'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',
'Topic :: Communications :: Email :: Filters',