Add (optional!) C implementations of hex_to_sha and sha_to_hex.
[jelmer/dulwich-libgit2.git] / 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 from distutils.extension import Extension
7
8 dulwich_version_string = '0.1.1'
9
10 setup(name='dulwich',
11       description='Pure-Python Git Library',
12       keywords='git',
13       version=dulwich_version_string,
14       url='http://launchpad.net/dulwich',
15       download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
16       license='GPL',
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=[Extension('dulwich/_objects', ['dulwich/_objects.c'])],
27       )