/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
0.215.75 by Jelmer Vernooij
Fix download url, add version number.
7
dulwich_version_string = '0.1.0'
8
0.211.12 by Jelmer Vernooij
Rename package to dulwich, add setup.py.
9
setup(name='dulwich',
10
      description='Pure-Python Git Library',
11
      keywords='git',
0.215.75 by Jelmer Vernooij
Fix download url, add version number.
12
      version=dulwich_version_string,
0.211.12 by Jelmer Vernooij
Rename package to dulwich, add setup.py.
13
      url='http://launchpad.net/dulwich',
0.215.75 by Jelmer Vernooij
Fix download url, add version number.
14
      download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
0.211.12 by Jelmer Vernooij
Rename package to dulwich, add setup.py.
15
      license='GPL',
16
      author='Jelmer Vernooij',
17
      author_email='jelmer@samba.org',
18
      long_description="""
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.
22
      """,
23
      packages=['dulwich', 'dulwich.tests'],
0.215.35 by Jelmer Vernooij
install scripts.
24
      scripts=['bin/dulwich', 'bin/dul-daemon'],
0.211.12 by Jelmer Vernooij
Rename package to dulwich, add setup.py.
25
      )