setup.py
author oxymoron@cinder.waste.org
Tue, 03 May 2005 23:39:04 -0800
changeset 11 7f16aaeed62f
parent 0 9117c6561b0b
child 16 7eca4cfa8aad
permissions -rw-r--r--
Allow checkout by number or hash Print files touched in changeset Fix reporting of incorrect changelog rev links in verify

#!/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'])