diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2018-08-21 07:32:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-21 07:32:10 -0500 |
commit | 444859662f1829f2d8068fb33cdc375427bf9b6c (patch) | |
tree | c8bca23f03166b59211bd69ae77a5dfd7db62c45 | |
parent | 96675e30a472d9ca1a9e7e3b314b6ea411a9829a (diff) | |
parent | 23d7418aa18f6e4ce1b97938144a8968e2b0cb9b (diff) | |
download | pyparsing-git-444859662f1829f2d8068fb33cdc375427bf9b6c.tar.gz |
Merge pull request #23 from hugovk/python_requires
Add python_requires to help pip
-rw-r--r-- | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -26,6 +26,7 @@ setup(# Distribution meta-data download_url = "https://pypi.org/project/pyparsing/",
license = "MIT License",
py_modules = modules,
+ python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
|