# HG changeset patch # User Aurélien Campéas # Date 1614100253 -3600 # Tue Feb 23 18:10:53 2021 +0100 # Node ID 9bd85eb389e46b1fc51215b861cae9e156849f6f # Parent 6eb13e9aba12aa42fe9bb75056b4d99032f3c11f pkg: prepare version 2.0 (py3 only) diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ 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 @@ 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' + ] )