setup.py 846 B

12345678910111213141516171819202122232425
  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. dulwich_version_string = '0.1.1'
  6. setup(name='dulwich',
  7. description='Pure-Python Git Library',
  8. keywords='git',
  9. version=dulwich_version_string,
  10. url='http://launchpad.net/dulwich',
  11. download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
  12. license='GPL',
  13. author='Jelmer Vernooij',
  14. author_email='jelmer@samba.org',
  15. long_description="""
  16. Simple Pure-Python implementation of the Git file formats and
  17. protocols. Dulwich is the place where Mr. and Mrs. Git live
  18. in one of the Monty Python sketches.
  19. """,
  20. packages=['dulwich', 'dulwich.tests'],
  21. scripts=['bin/dulwich', 'bin/dul-daemon'],
  22. )