setup.py
author jake@edge2.net
Tue, 17 May 2005 16:03:50 -0700
changeset 101 6da5cf0c4193
parent 67 a182f2561c8e
child 72 4a6ab4d80dc4
permissions -rw-r--r--
added pagination for changes (front) page added manifest list added file history

#!/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.4f',
            author='Matt Mackall',
            author_email='mpm@selenic.com',
            url='http://selenic.com/mercurial',
            description='scalable distributed SCM',
            license='GNU GPL',
            packages=['mercurial'],
            scripts=['hg', 'hgweb.py'])