/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.211.12 by Jelmer Vernooij
Rename package to dulwich, add setup.py.
1
#!/usr/bin/python
2
# Setup file for bzr-git
3
# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
4
5
from distutils.core import setup
6
7
setup(name='dulwich',
8
      description='Pure-Python Git Library',
9
      keywords='git',
10
      version='0.0.1',
11
      url='http://launchpad.net/dulwich',
12
      download_url='http://launchpad.net/dulwich',
13
      license='GPL',
14
      author='Jelmer Vernooij',
15
      author_email='jelmer@samba.org',
16
      long_description="""
17
      Simple Pure-Python implementation of the Git file formats and 
18
      protocols. Dulwich is the place where Mr. and Mrs. Git live 
19
      in one of the Monty Python sketches.
20
      """,
21
      packages=['dulwich', 'dulwich.tests'],
22
      )