view setup.py @ 470:493b55cb7362

tests: remove hg 1.4.3 from make all-version-tests As demonstrated by the test suite, it was already broken. Specifically, the "Remove any dangling tag references." section of git_handler.py wasn't properly detecting Hg 1.4, and fell through to a call to util.safehasattr, which didn't yet exist.
author David M. Carr <david@carrclan.us>
date Sat, 04 Aug 2012 14:06:19 -0400
parents a9c0b93488d4
children 9d44dafbb31c
line wrap: on
line source

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

setup(
    name='hg-git',
    version='0.3.2',
    author='Scott Chacon',
    maintainer='Augie Fackler',
    maintainer_email='durin42@gmail.com',
    url='http://hg-git.github.com/',
    description='push and pull from a Git server 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'],
    install_requires=['dulwich>=0.8.0'],
)