setup.py
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Tue, 23 Oct 2012 15:05:32 +0200
branchstable
changeset 585 f013ca072bd9
parent 564 5559e5a4b656
child 613 22cacfce2a65
permissions -rw-r--r--
evolve: detect and abort if 2.4 is detected The meaning of critical attribut have changed in 2.4

# Copied from histedit setup.py
# Credit to Augie Fackler <durin42@gmail.com>

from distutils.core import setup

setup(
    name='hg-evolve',
    version='1.0.2',
    author='Pierre-Yves David',
    maintainer='Pierre-Yves David',
    maintainer_email='pierre-yves.david@logilab.fr',
    url='https://bitbucket.org/marmoute/mutable-history',
    description='Flexible evolution of Mercurial history.',
    long_description=open('README').read(),
    keywords='hg mercurial',
    license='GPLv2+',
    py_modules=['hgext.evolve'],
)