setup.py 963 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/python
  2. # Setup file for bzr-git
  3. # Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
  4. from distutils.core import setup
  5. from distutils.extension import Extension
  6. dulwich_version_string = '0.1.1'
  7. setup(name='dulwich',
  8. description='Pure-Python Git Library',
  9. keywords='git',
  10. version=dulwich_version_string,
  11. url='http://launchpad.net/dulwich',
  12. download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
  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. scripts=['bin/dulwich', 'bin/dul-daemon'],
  23. ext_modules=[Extension('dulwich/_objects', ['dulwich/_objects.c'])],
  24. )