setup.py
author Anton Shestakov <av6@dwimlabs.net>
Wed, 07 Sep 2016 10:35:47 +0800
changeset 2009 d9c1d140a831
parent 1929 99f983e8e18f
child 2016 192c9f92148d
permissions -rw-r--r--
flake8: don't ignore E713 now that it's fixed E713 is "test for membership should be ‘not in’"

from distutils.core import setup

requires = []
try:
    import mercurial
    mercurial.__all__
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,
)