diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2013-07-17 05:38:18 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2013-07-17 05:38:18 +0000 |
commit | e5068e4861660ea3e7d52918c259134b21e6b74e (patch) | |
tree | 9d251ede3cb646094c757a669c4b28238628a2bd /src/setup.py | |
parent | 15374a9cd4cf51cddbb0d5dd3e748be515975b7c (diff) | |
download | pyparsing-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.py | 6 |
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',
]
)
|