view setup.py @ 10:e76ed1e480ef

Fix linking of changeset revs when merging
author oxymoron@cinder.waste.org
date Tue, 03 May 2005 23:37:43 -0800
parents 9117c6561b0b
children 7eca4cfa8aad
line wrap: on
line source

#!/usr/bin/env python

# This is the mercurial setup script. 
#
# './setup.py install', or
# './setup.py --help' for more options

from distutils.core import setup

setup(name='mercurial',
            version='0.4c',
            author='Matt Mackall',
            author_email='mpm@selenic.com',
            url='http://selenic.com/mercurial',
            description='scalable distributed SCM',
            license='GNU GPL',
            packages=['mercurial'],
            scripts=['hg'])