view setup.py @ 278:21ead8190d9c 0.2.1

setup: bump to 0.2.1
author Augie Fackler <durin42@gmail.com>
date Sat, 26 Dec 2009 13:46:37 -0600
parents 77d6c9eb02fb
children 6f06c47842d6
line wrap: on
line source

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

setup(
    name='hg-git',
    version='0.2.1',
    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.4.0'],
)