view setup.py @ 784:4f425a1be4f3

git_handler: rename convert_list to commit_cache convert_list is not the best naming choice for this variable. It is neither a list nor has anything to directly do with conversion -- it is simply a cache of commit hashes to the Git objects backing them.
author Siddharth Agarwal <sid0@fb.com>
date Tue, 14 Oct 2014 15:21:09 -0700
parents e5e1a287121d
children fc63d0e2653d
line wrap: on
line source

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.6.1',
    author='The hg-git Authors',
    maintainer='Augie Fackler',
    maintainer_email='durin42@gmail.com',
    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,
)