setup.py 750 B

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