Skip to content
This repository has been archived by the owner on Jul 24, 2020. It is now read-only.

Commit

Permalink
package with distutils
Browse files Browse the repository at this point in the history
(patch tweaked slightly by Augie Fackler)

--HG--
rename : __init__.py => hggit/__init__.py
rename : git_handler.py => hggit/git_handler.py
rename : gitrepo.py => hggit/gitrepo.py
rename : hgrepo.py => hggit/hgrepo.py
rename : toposort.py => hggit/toposort.py
  • Loading branch information
Kevin Bullock committed Sep 30, 2009
1 parent 02c1a4d commit 2304ecf
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
@@ -1 +1,5 @@
*.pyc
tests/*.err
build
dist
*.egg-info
4 changes: 3 additions & 1 deletion .hgignore
@@ -1,4 +1,6 @@
syntax: glob

*.pyc
tests/*.err
build
dist
*.egg-info
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 23 additions & 0 deletions 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'],
)

0 comments on commit 2304ecf

Please sign in to comment.