setup.py
author Sean Farley <sean@farley.io>
Mon, 21 Mar 2016 21:07:41 -0700
changeset 1919 769b2b271422
parent 1901 85390446f8c1
child 1929 99f983e8e18f
permissions -rw-r--r--
setup: break long line

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.md').read(),
    keywords='hg mercurial',
    license='GPLv2+',
    packages=['hgext3rd.topic'],
    install_requires=requires,
)