setup.py 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #!/usr/bin/python
  2. # Setup file for dulwich
  3. # Copyright (C) 2008-2010 Jelmer Vernooij <jelmer@samba.org>
  4. try:
  5. from setuptools import setup, Extension
  6. except ImportError:
  7. from distutils.core import setup, Extension
  8. from distutils.core import Distribution
  9. dulwich_version_string = '0.8.0'
  10. include_dirs = []
  11. # Windows MSVC support
  12. import os
  13. import sys
  14. if sys.platform == 'win32':
  15. include_dirs.append('dulwich')
  16. class DulwichDistribution(Distribution):
  17. def is_pure(self):
  18. if self.pure:
  19. return True
  20. def has_ext_modules(self):
  21. return not self.pure
  22. global_options = Distribution.global_options + [
  23. ('pure', None,
  24. "use pure (slower) Python code instead of C extensions")]
  25. pure = False
  26. def runcmd(cmd, env):
  27. import subprocess
  28. p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
  29. stderr=subprocess.PIPE, env=env)
  30. out, err = p.communicate()
  31. err = [e for e in err.splitlines()
  32. if not e.startswith('Not trusting file') \
  33. and not e.startswith('warning: Not importing')]
  34. if err:
  35. return ''
  36. return out
  37. if sys.platform == 'darwin' and os.path.exists('/usr/bin/xcodebuild'):
  38. # XCode 4.0 dropped support for ppc architecture, which is hardcoded in
  39. # distutils.sysconfig
  40. version = runcmd(['/usr/bin/xcodebuild', '-version'], {}).splitlines()[0]
  41. # Also parse only first digit, because 3.2.1 can't be parsed nicely
  42. if (version.startswith('Xcode') and
  43. int(version.split()[1].split('.')[0]) >= 4):
  44. os.environ['ARCHFLAGS'] = ''
  45. setup(name='dulwich',
  46. description='Python Git Library',
  47. keywords='git',
  48. version=dulwich_version_string,
  49. url='http://samba.org/~jelmer/dulwich',
  50. download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
  51. license='GPLv2 or later',
  52. author='Jelmer Vernooij',
  53. author_email='jelmer@samba.org',
  54. long_description="""
  55. Simple Python implementation of the Git file formats and
  56. protocols. Dulwich is the place where Mr. and Mrs. Git live
  57. in one of the Monty Python sketches.
  58. All functionality is available in pure Python, but (optional)
  59. C extensions are also available for better performance.
  60. """,
  61. packages=['dulwich', 'dulwich.tests'],
  62. scripts=['bin/dulwich', 'bin/dul-daemon', 'bin/dul-web'],
  63. ext_modules = [
  64. Extension('dulwich._objects', ['dulwich/_objects.c'],
  65. include_dirs=include_dirs),
  66. Extension('dulwich._pack', ['dulwich/_pack.c'],
  67. include_dirs=include_dirs),
  68. Extension('dulwich._diff_tree', ['dulwich/_diff_tree.c'],
  69. include_dirs=include_dirs),
  70. ],
  71. distclass=DulwichDistribution,
  72. )