sapling/setup.py

23 lines
631 B
Python
Raw Normal View History

2010-01-04 07:37:45 +03:00
try:
from setuptools import setup
2015-03-12 00:34:09 +03:00
except ImportError:
2010-01-04 07:37:45 +03:00
from distutils.core import setup
setup(
2015-03-12 00:34:09 +03:00
name='remotenames',
version='0.2',
author='Sean Farley',
maintainer='Sean Farley',
maintainer_email='sean@farley.io',
url='https://bitbucket.org/seanfarley/hgremotenames',
description='Mark remote branch and bookmark heads in Mercurial',
2010-01-04 07:37:45 +03:00
long_description="""
This extension automatically creates a local tag-like marker
during a pull from a remote server that has its path specifed
in .hg/hgrc.
""".strip(),
keywords='hg mercurial',
license='GPLv2',
py_modules=['remotenames'],
2010-01-04 07:37:45 +03:00
)