pkg: prepare version 2.0 (py3 only)
1 files changed, 11 insertions(+), 2 deletions(-)

M setup.py
M setup.py +11 -2
@@ 3,7 3,7 @@ from setuptools import setup
 
 setup(
     name='hg-confman',
-    version='1.0.2',
+    version='2.0.0',
     url='https://hg.sr.ht/~auc/confman',
     author=u'Aurélien Campéas',
     author_email='aurelien.campeas@pythonian.fr',

          
@@ 11,5 11,14 @@ setup(
     license='GPLv2+',
     keywords='hg mercurial',
     packages=['hgext3rd', 'hgext3rd.confman'],
-    namespace_packages=['hgext3rd']
+    namespace_packages=['hgext3rd'],
+    classifiers=[
+        'Development Status :: 6 - Mature',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python :: 3',
+        'Topic :: Software Development :: Version Control',
+        'Topic :: Software Development :: Version Control :: Mercurial'
+    ]
 )