forked from schacon/hg-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 930 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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.8.0',
author='The hg-git Authors',
maintainer='Augie Fackler',
maintainer_email='[email protected]',
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'] },
include_package_data=True,
install_requires=['dulwich>=0.9.7'] + extra_req,
)