view setup.py @ 725:91b621c6ba9a

readme: drop Mercurial and Dulwich compatibilty information No one's ever going to bother keeping this in sync.
author Siddharth Agarwal <sid0@fb.com>
date Mon, 19 May 2014 20:44:53 -0700
parents 9f20b66027c2
children c7ea22aa3440
line wrap: on
line source

try:
    from setuptools import setup
except:
    from distutils.core import setup

try:
    from collections import OrderedDict
    extra_req = []
except ImportError:
    extra_req = ['ordereddict>=1.1']

setup(
    name='hg-git',
    version='0.6.0',
    author='The hg-git Authors',
    maintainer='Augie Fackler',
    maintainer_email='durin42@gmail.com',
    url='http://hg-git.github.com/',
    description='push to and pull from a Git repository using Mercurial',
    long_description="""
This extension lets you communicate (push and pull) with a Git server.
This way you can use Git hosting for your project or collaborate with a
project that is in Git.  A bridger of worlds, this plugin be.
    """.strip(),
    keywords='hg git mercurial',
    license='GPLv2',
    packages=['hggit'],
    package_data={ 'hggit': ['help/git.rst'] },
    install_requires=['dulwich>=0.9.4'] + extra_req,
)