setup.py
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Fri, 31 Aug 2012 11:30:30 +0200
branchstable
changeset 542 ca5bb72d14ae
parent 541 3859f8e7d0d1
child 564 5559e5a4b656
permissions -rw-r--r--
pkg: abstract version in makefile

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

from distutils.core import setup

setup(
    name='hg-evolve',
    version='1.0.1',
    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'],
)