2
# Setup file for bzr-git
3
# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
5
from distutils.core import setup
7
dulwich_version_string = '0.1.0'
10
description='Pure-Python Git Library',
12
version=dulwich_version_string,
13
url='http://launchpad.net/dulwich',
14
download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
16
author='Jelmer Vernooij',
17
author_email='jelmer@samba.org',
19
Simple Pure-Python implementation of the Git file formats and
20
protocols. Dulwich is the place where Mr. and Mrs. Git live
21
in one of the Monty Python sketches.
23
packages=['dulwich', 'dulwich.tests'],
24
scripts=['bin/dulwich', 'bin/dul-daemon'],