comparison setup.py @ 73:d262139732f7

Fixed to work against mercurial >= 4.1 (which requires using @command decorator for commands). (internally using mercurial_extension_utils to define command portably)
author Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
date Thu, 18 May 2017 17:36:19 +0200
parents 387cab3d2bf9
children 879d1f392fa7
comparison
equal deleted inserted replaced
72:29fa6cfad89b 73:d262139732f7
19 author_email='Marcin.Kasperski@mekk.waw.pl', 19 author_email='Marcin.Kasperski@mekk.waw.pl',
20 url='http://bitbucket.org/Mekk/mercurial-all_paths', 20 url='http://bitbucket.org/Mekk/mercurial-all_paths',
21 description='Mercurial allpaths extension', 21 description='Mercurial allpaths extension',
22 long_description=LONG_DESCRIPTION, 22 long_description=LONG_DESCRIPTION,
23 license='GNU General Public License v2 (GPLv2)', 23 license='GNU General Public License v2 (GPLv2)',
24 py_modules=['mercurial_all_paths'], 24 py_modules=[
25 'mercurial_all_paths',
26 ],
27 install_requires=[
28 'mercurial_extension_utils>=1.2.0',
29 ],
25 keywords="mercurial paths multi extension", 30 keywords="mercurial paths multi extension",
26 classifiers=[ 31 classifiers=[
27 'Development Status :: 4 - Beta', 32 'Development Status :: 4 - Beta',
28 'Environment :: Console', 33 'Environment :: Console',
29 'Intended Audience :: Developers', 34 'Intended Audience :: Developers',