public
Description: mercurial to git bridge, pushed to directly from the hg-git plugin in Hg
Homepage:
Clone URL: git://github.com/schacon/hg-git.git
hg-git / setup.py
100644 24 lines (22 sloc) 0.704 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
try:
    from setuptools import setup
except:
    from distutils.core import setup
 
setup(
    name='hg-git',
    version='0.1.0',
    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'],
)