setup.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. #!/usr/bin/python3
  2. # encoding: utf-8
  3. # Setup file for dulwich
  4. # Copyright (C) 2008-2016 Jelmer Vernooij <jelmer@jelmer.uk>
  5. try:
  6. from setuptools import setup, Extension
  7. except ImportError:
  8. from distutils.core import setup, Extension
  9. has_setuptools = False
  10. else:
  11. has_setuptools = True
  12. from distutils.core import Distribution
  13. import io
  14. import os
  15. import sys
  16. if sys.version_info < (3, 5):
  17. raise Exception(
  18. 'Dulwich only supports Python 3.5 and later. '
  19. 'For 2.7 support, please install a version prior to 0.20')
  20. dulwich_version_string = '0.20.5'
  21. class DulwichDistribution(Distribution):
  22. def is_pure(self):
  23. if self.pure:
  24. return True
  25. def has_ext_modules(self):
  26. return not self.pure
  27. global_options = Distribution.global_options + [
  28. ('pure', None, "use pure Python code instead of C "
  29. "extensions (slower on CPython)")]
  30. pure = False
  31. if sys.platform == 'darwin' and os.path.exists('/usr/bin/xcodebuild'):
  32. # XCode 4.0 dropped support for ppc architecture, which is hardcoded in
  33. # distutils.sysconfig
  34. import subprocess
  35. p = subprocess.Popen(
  36. ['/usr/bin/xcodebuild', '-version'], stdout=subprocess.PIPE,
  37. stderr=subprocess.PIPE, env={})
  38. out, err = p.communicate()
  39. for line in out.splitlines():
  40. line = line.decode("utf8")
  41. # Also parse only first digit, because 3.2.1 can't be parsed nicely
  42. if (line.startswith('Xcode') and
  43. int(line.split()[1].split('.')[0]) >= 4):
  44. os.environ['ARCHFLAGS'] = ''
  45. tests_require = ['fastimport']
  46. if '__pypy__' not in sys.modules and not sys.platform == 'win32':
  47. tests_require.extend([
  48. 'gevent', 'geventhttpclient', 'mock', 'setuptools>=17.1'])
  49. ext_modules = [
  50. Extension('dulwich._objects', ['dulwich/_objects.c']),
  51. Extension('dulwich._pack', ['dulwich/_pack.c']),
  52. Extension('dulwich._diff_tree', ['dulwich/_diff_tree.c']),
  53. ]
  54. setup_kwargs = {}
  55. scripts = ['bin/dul-receive-pack', 'bin/dul-upload-pack']
  56. if has_setuptools:
  57. setup_kwargs['extras_require'] = {
  58. 'fastimport': ['fastimport'],
  59. 'https': ['urllib3[secure]>=1.24.1'],
  60. 'pgp': ['gpg'],
  61. }
  62. setup_kwargs['install_requires'] = ['urllib3>=1.24.1', 'certifi']
  63. setup_kwargs['include_package_data'] = True
  64. setup_kwargs['test_suite'] = 'dulwich.tests.test_suite'
  65. setup_kwargs['tests_require'] = tests_require
  66. setup_kwargs['entry_points'] = {
  67. "console_scripts": [
  68. "dulwich=dulwich.cli:main",
  69. ]}
  70. setup_kwargs['python_requires'] = '>=3.5'
  71. else:
  72. scripts.append('bin/dulwich')
  73. with io.open(os.path.join(os.path.dirname(__file__), "README.rst"),
  74. encoding="utf-8") as f:
  75. description = f.read()
  76. setup(name='dulwich',
  77. author="Jelmer Vernooij",
  78. author_email="jelmer@jelmer.uk",
  79. url="https://www.dulwich.io/",
  80. long_description=description,
  81. description="Python Git Library",
  82. version=dulwich_version_string,
  83. license='Apachev2 or later or GPLv2',
  84. project_urls={
  85. "Bug Tracker": "https://github.com/dulwich/dulwich/issues",
  86. "Repository": "https://www.dulwich.io/code/",
  87. "GitHub": "https://github.com/dulwich/dulwich",
  88. },
  89. keywords="git vcs",
  90. packages=['dulwich', 'dulwich.tests', 'dulwich.tests.compat',
  91. 'dulwich.contrib'],
  92. package_data={'': ['../docs/tutorial/*.txt']},
  93. scripts=scripts,
  94. ext_modules=ext_modules,
  95. distclass=DulwichDistribution,
  96. classifiers=[
  97. 'Development Status :: 4 - Beta',
  98. 'License :: OSI Approved :: Apache Software License',
  99. 'Programming Language :: Python :: 3.5',
  100. 'Programming Language :: Python :: 3.6',
  101. 'Programming Language :: Python :: 3.7',
  102. 'Programming Language :: Python :: 3.8',
  103. 'Programming Language :: Python :: Implementation :: CPython',
  104. 'Programming Language :: Python :: Implementation :: PyPy',
  105. 'Operating System :: POSIX',
  106. 'Operating System :: Microsoft :: Windows',
  107. 'Topic :: Software Development :: Version Control',
  108. ],
  109. **setup_kwargs
  110. )