setup.py
changeset 0 9117c6561b0b
child 16 7eca4cfa8aad
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'])