view setup.py @ 572:586b7aa96466 0.3.4

Release 0.3.4
author Augie Fackler <raf@durin42.com>
date Thu, 01 Nov 2012 09:10:59 -0500
parents 9df1741f3977
children d4ad5de012a0
line wrap: on
line source

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

setup(
    name='hg-git',
    version='0.3.4',
    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'],
    package_data={ 'hggit': ['help/git.rst'] },
    install_requires=['dulwich>=0.8.0'],
)