setup.py
changeset 1839 1bc5e62fc0c7
child 1901 85390446f8c1
equal deleted inserted replaced
-1:000000000000 1839:1bc5e62fc0c7
       
     1 from distutils.core import setup
       
     2 
       
     3 requires = []
       
     4 try:
       
     5     import mercurial
       
     6 except ImportError:
       
     7     requires.append('mercurial')
       
     8 
       
     9 setup(
       
    10     name='hg-topics',
       
    11     version='1.0.0',
       
    12     author='Augie Fackler',
       
    13     maintainer='Augie Fackler',
       
    14     maintainer_email='augie@google.com',
       
    15     url='http://bitbucket.org/durin42/hg-topics/',
       
    16     description='Experimental tinkering with workflow ideas for topic branches.',
       
    17     long_description=open('README').read(),
       
    18     keywords='hg mercurial',
       
    19     license='GPLv2+',
       
    20     py_modules=['src'],
       
    21     install_requires=requires,
       
    22 )