setup.py
author mpm@selenic.com
Wed, 11 May 2005 17:11:10 -0800
changeset 57 115106376f45
parent 16 7eca4cfa8aad
child 63 1c590d34bf61
permissions -rw-r--r--
hgweb.py from Jake Edge remove hgweb.py from URLs so that it will work as index.cgi

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