Start working on 0.3.2.
[jelmer/dulwich-libgit2.git] / setup.py
1 #!/usr/bin/python
2 # Setup file for bzr-git
3 # Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
4
5 from distutils.core import setup
6 from distutils.extension import Extension
7
8 dulwich_version_string = '0.3.2'
9
10 setup(name='dulwich',
11       description='Pure-Python Git Library',
12       keywords='git',
13       version=dulwich_version_string,
14       url='http://samba.org/~jelmer/dulwich',
15       download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
16       license='GPLv2 or later',
17       author='Jelmer Vernooij',
18       author_email='jelmer@samba.org',
19       long_description="""
20       Simple Pure-Python implementation of the Git file formats and 
21       protocols. Dulwich is the place where Mr. and Mrs. Git live 
22       in one of the Monty Python sketches.
23       """,
24       packages=['dulwich', 'dulwich.tests'],
25       scripts=['bin/dulwich', 'bin/dul-daemon'],
26       ext_modules=[
27           Extension('dulwich/_objects', ['dulwich/_objects.c']),
28           Extension('dulwich/_pack', ['dulwich/_pack.c']),
29           ],
30       )