summaryrefslogtreecommitdiff
path: root/src/setup.py
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2013-07-17 05:38:18 +0000
committerPaul McGuire <ptmcg@austin.rr.com>2013-07-17 05:38:18 +0000
commite5068e4861660ea3e7d52918c259134b21e6b74e (patch)
tree9d251ede3cb646094c757a669c4b28238628a2bd /src/setup.py
parent15374a9cd4cf51cddbb0d5dd3e748be515975b7c (diff)
downloadpyparsing-git-e5068e4861660ea3e7d52918c259134b21e6b74e.tar.gz
Prep release 2.0.1, to be compatible with Python 2.6 and 2.7, as well as Python 3.x versions.
Fix bug in <<= operator, added 'return self'.
Diffstat (limited to 'src/setup.py')
-rw-r--r--src/setup.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/setup.py b/src/setup.py
index 076ab6d..dac3ec7 100644
--- a/src/setup.py
+++ b/src/setup.py
@@ -27,6 +27,12 @@ setup(# Distribution meta-data
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.0',
+ 'Programming Language :: Python :: 3.1',
+ 'Programming Language :: Python :: 3.2',
+ 'Programming Language :: Python :: 3.3',
]
)