# HG changeset patch # User Brett Cannon # Date 1427475503 14400 # Node ID 91329df47df5825072947821f9571fc5dd6b1342 # Parent 16496e0f3c091820879271137495914ec528c9fa hglib: declare hglib's Python version support (issue4520) diff -r 16496e0f3c09 -r 91329df47df5 setup.py --- 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'])