setup.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #!/usr/bin/python
  2. # Setup file for bzr-git
  3. # Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
  4. try:
  5. from setuptools import setup, Extension
  6. except ImportError:
  7. from distutils.core import setup, Extension
  8. dulwich_version_string = '0.4.2'
  9. include_dirs = []
  10. # Windows MSVC support
  11. import sys
  12. if sys.platform == 'win32':
  13. include_dirs.append('dulwich')
  14. ext_modules = [
  15. Extension('dulwich._objects', ['dulwich/_objects.c'],
  16. include_dirs=include_dirs),
  17. Extension('dulwich._pack', ['dulwich/_pack.c'],
  18. include_dirs=include_dirs),
  19. ]
  20. try:
  21. from setuptools import Feature
  22. except ImportError:
  23. speedups = None
  24. mandatory_ext_modules = ext_modules
  25. else:
  26. mandatory_ext_modules = []
  27. speedups = Feature(
  28. "optional C speed-enhancements",
  29. standard = True,
  30. ext_modules=ext_modules,
  31. )
  32. setup(name='dulwich',
  33. description='Pure-Python Git Library',
  34. keywords='git',
  35. version=dulwich_version_string,
  36. url='http://samba.org/~jelmer/dulwich',
  37. download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
  38. license='GPLv2 or later',
  39. author='Jelmer Vernooij',
  40. author_email='jelmer@samba.org',
  41. long_description="""
  42. Simple Pure-Python implementation of the Git file formats and
  43. protocols. Dulwich is the place where Mr. and Mrs. Git live
  44. in one of the Monty Python sketches.
  45. """,
  46. packages=['dulwich', 'dulwich.tests'],
  47. scripts=['bin/dulwich', 'bin/dul-daemon', 'bin/dul-web'],
  48. features = {'speedups': speedups},
  49. ext_modules = mandatory_ext_modules,
  50. )