view setup.py @ 1994:10d10563e2a8

test: add testing of stack output in 'stack-data' test. We are going to display common information, so we reuse test case.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Fri, 26 Aug 2016 14:58:18 +0200
parents 99f983e8e18f
children 192c9f92148d
line wrap: on
line source

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,
)