view setup.py @ 65:d40cc5aacc31 0.4f

Fix up a bunch of bugs in the new merge code Move getchangegroup/addchangegroup to generators
author mpm@selenic.com
date Fri, 13 May 2005 11:47:16 -0800
parents 1c590d34bf61
children a182f2561c8e
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.4e',
            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'])