##// END OF EJS Templates
Update version numbers
Update version numbers

File last commit:

r16:7eca4cfa 0.4d default
r16:7eca4cfa 0.4d default
Show More
setup.py
18 lines | 491 B | text/x-python | PythonLexer
mpm@selenic.com
Add back links from file revisions to changeset revisions...
r0 #!/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',
mpm@selenic.com
Update version numbers
r16 version='0.4d',
mpm@selenic.com
Add back links from file revisions to changeset revisions...
r0 author='Matt Mackall',
author_email='mpm@selenic.com',
url='http://selenic.com/mercurial',
description='scalable distributed SCM',
license='GNU GPL',
packages=['mercurial'],
scripts=['hg'])