Mercurial > hg > hg-git
changeset 253:505d7cdca198 0.1.0
package with distutils
(patch tweaked slightly by Augie Fackler)
author | Kevin Bullock <kbullock@ringworld.org> |
---|---|
date | Wed, 30 Sep 2009 14:39:49 -0500 (2009-09-30) |
parents | 3e0eb85a83a7 |
children | 07c7697e2aaa |
files | .gitignore .hgignore __init__.py git_handler.py gitrepo.py hggit/__init__.py hggit/git_handler.py hggit/gitrepo.py hggit/hgrepo.py hggit/toposort.py hgrepo.py setup.py toposort.py |
diffstat | 8 files changed, 30 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgignore +++ b/.hgignore @@ -1,4 +1,6 @@ syntax: glob - *.pyc tests/*.err +build +dist +*.egg-info
new file mode 100644 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +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'], +)