view setup.py @ 33:98633e60067c

Support for 0, 1, or 2 diff revs
author mpm@selenic.com
date Sat, 07 May 2005 09:27:52 -0800
parents 7eca4cfa8aad
children 1c590d34bf61
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.4d',
            author='Matt Mackall',
            author_email='mpm@selenic.com',
            url='http://selenic.com/mercurial',
            description='scalable distributed SCM',
            license='GNU GPL',
            packages=['mercurial'],
            scripts=['hg'])