Mercurial > evolve
view setup.py @ 1904:f52c02bf47b7
stack: allow to refer to changeset using "t2" form
hg up "t0" is seen as "update to the first changeset of my current topic".
Eventually we'll drop the "t2" form in favor of the planned generic indexing
operator '.{t2}'.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Mon, 14 Mar 2016 18:39:19 +0000 |
parents | 85390446f8c1 |
children | 769b2b271422 |
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.md').read(), keywords='hg mercurial', license='GPLv2+', packages=['hgext3rd.topic'], install_requires=requires, )