Mercurial > evolve
view setup.py @ 1895:c8e4c6e03957
stack: add a very first version of stack display with 'hg topic --list'
This mark the first step toward a set of feature dedicated to displaying and
moving within the current stack of work. Everything is still super basic so
don't look too much at the feature.
The goals of this changeset are:
* having a flag to trigger the feature
* having a basic (imperfect selection mechanism)
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Mon, 14 Mar 2016 17:37:39 +0000 |
parents | 1bc5e62fc0c7 |
children | 85390446f8c1 |
line wrap: on
line source
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, )