Mercurial > hg > hg-git
view setup.py @ 401:f17ca8ed620c
Use author as email when it is an email
author | César Izurieta <cesar@caih.org> |
---|---|
date | Mon, 23 May 2011 19:29:33 -0300 (2011-05-23) |
parents | 46d390f404da |
children | 81f42c0d5ea9 |
line wrap: on
line source
try: from setuptools import setup except: from distutils.core import setup setup( name='hg-git', version='0.2.6', 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.6.0'], )