comparison setup.py @ 0:9117c6561b0b

Add back links from file revisions to changeset revisions Add simple transaction support Add hg verify Improve caching in revlog Fix a bunch of bugs Self-hosting now that the metadata is close to finalized
author mpm@selenic.com
date Tue, 03 May 2005 13:16:10 -0800
parents
children 7eca4cfa8aad
comparison
equal deleted inserted replaced
-1:000000000000 0:9117c6561b0b
1 #!/usr/bin/env python
2
3 # This is the mercurial setup script.
4 #
5 # './setup.py install', or
6 # './setup.py --help' for more options
7
8 from distutils.core import setup
9
10 setup(name='mercurial',
11 version='0.4c',
12 author='Matt Mackall',
13 author_email='mpm@selenic.com',
14 url='http://selenic.com/mercurial',
15 description='scalable distributed SCM',
16 license='GNU GPL',
17 packages=['mercurial'],
18 scripts=['hg'])