setup.py
author Pierre-Yves David <pierre-yves.david@fb.com>
Wed, 23 Apr 2014 14:22:06 -0700
branchstable
changeset 916 48e68d3b0144
parent 859 83882f2fbecb
child 917 fc04758ea9f5
permissions -rw-r--r--
fix maintainer email I'm not working at Logilab since july 2013. Using my personal address to prevent this kind of situation in the future.

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

from distutils.core import setup

setup(
    name='hg-evolve',
    version='3.3.0',
    author='Pierre-Yves David',
    maintainer='Pierre-Yves David',
    maintainer_email='pierre-yves.david@ens-lyon.org',
    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', 'hgext.pushexperiment'],
)