Mercurial > public > mercurial-scm > hg-stable
view setup.py @ 100:526722d24ee5
reorganize code into classes
clean up html code for w3c validation
author | jake@edge2.net |
---|---|
date | Fri, 13 May 2005 17:48:10 -0700 |
parents | a182f2561c8e |
children | 4a6ab4d80dc4 |
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.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'])