[PATCH 6 of 7 hglib] hglib: update setup.py to mark Python 3 support (issue4520)

Brett Cannon brett at python.org
Wed Mar 25 19:40:00 CDT 2015


# HG changeset patch
# User Brett Cannon <brett at python.org>
# Date 1427329654 14400
#      Wed Mar 25 20:27:34 2015 -0400
# Node ID 580123ac44cc97d4ad2cc7b7a9c874be5e473d30
# Parent  c65b266b8abb6d442740508c08c29dfe8c712ffa
hglib: update setup.py to mark Python 3 support (issue4520)

diff -r c65b266b8abb -r 580123ac44cc setup.py
--- a/setup.py	Wed Mar 25 20:23:41 2015 -0400
+++ b/setup.py	Wed Mar 25 20:27:34 2015 -0400
@@ -37,4 +37,13 @@
     long_description=open(os.path.join(os.path.dirname(__file__),
                                        'README')).read(),
     license='MIT',
+    classifiers=[
+        'Programming Language :: Python :: 2',
+        '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',
+    ],
     packages=['hglib'])


More information about the Mercurial-devel mailing list