setup.py
author Pierre-Yves David <pierre-yves.david@fb.com>
Wed, 16 Mar 2016 12:14:20 -0700
changeset 1900 27ea12c05e99
parent 1839 1bc5e62fc0c7
child 1901 85390446f8c1
permissions -rw-r--r--
destination: fix 'hg pull --rebase' I'm not sure why sometime functions does not have func_default but this is easy to fix. I've added a test to catch such stuff it in the future.

from distutils.core import setup

requires = []
try:
    import mercurial
except ImportError:
    requires.append('mercurial')

setup(
    name='hg-topics',
    version='1.0.0',
    author='Augie Fackler',
    maintainer='Augie Fackler',
    maintainer_email='augie@google.com',
    url='http://bitbucket.org/durin42/hg-topics/',
    description='Experimental tinkering with workflow ideas for topic branches.',
    long_description=open('README').read(),
    keywords='hg mercurial',
    license='GPLv2+',
    py_modules=['src'],
    install_requires=requires,
)