Mercurial > python-hglib
changeset 160:91329df47df5 1.6
hglib: declare hglib's Python version support (issue4520)
author | Brett Cannon <brett@python.org> |
---|---|
date | Fri, 27 Mar 2015 12:58:23 -0400 |
parents | 16496e0f3c09 |
children | ec935041d1ff |
files | setup.py |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Fri Mar 27 12:57:58 2015 -0400 +++ b/setup.py Fri Mar 27 12:58:23 2015 -0400 @@ -36,5 +36,15 @@ description='Mercurial Python library', long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(), + classifiers=[ + 'Programming Language :: Python', + '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.4', + + ], license='MIT', packages=['hglib'])