2
0

pyproject.toml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. [build-system]
  2. requires = ["setuptools>=61.2", "setuptools-rust"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "dulwich"
  6. description = "Python Git Library"
  7. readme = "README.rst"
  8. authors = [{name = "Jelmer Vernooij", email = "jelmer@jelmer.uk"}]
  9. license = {text = "Apachev2 or later or GPLv2"}
  10. keywords = ["vcs", "git"]
  11. classifiers = [
  12. "Development Status :: 4 - Beta",
  13. "License :: OSI Approved :: Apache Software License",
  14. "Programming Language :: Python :: 3.8",
  15. "Programming Language :: Python :: 3.9",
  16. "Programming Language :: Python :: 3.10",
  17. "Programming Language :: Python :: 3.11",
  18. "Programming Language :: Python :: 3.12",
  19. "Programming Language :: Python :: Implementation :: CPython",
  20. "Programming Language :: Python :: Implementation :: PyPy",
  21. "Operating System :: POSIX",
  22. "Operating System :: Microsoft :: Windows",
  23. "Topic :: Software Development :: Version Control",
  24. ]
  25. requires-python = ">=3.8"
  26. dependencies = [
  27. "urllib3>=1.25",
  28. 'setuptools ; python_version >= "3.12"',
  29. ]
  30. dynamic = ["version"]
  31. [project.urls]
  32. Homepage = "https://www.dulwich.io/"
  33. Repository = "https://www.dulwich.io/code/"
  34. GitHub = "https://github.com/dulwich/dulwich"
  35. "Bug Tracker" = "https://github.com/dulwich/dulwich/issues"
  36. [project.optional-dependencies]
  37. fastimport = ["fastimport"]
  38. https = ["urllib3>=1.24.1"]
  39. pgp = ["gpg"]
  40. paramiko = ["paramiko"]
  41. dev = [
  42. "ruff==0.4.5"
  43. ]
  44. [project.scripts]
  45. dulwich = "dulwich.cli:main"
  46. [tool.mypy]
  47. ignore_missing_imports = true
  48. [tool.setuptools]
  49. packages = [
  50. "dulwich",
  51. "dulwich.cloud",
  52. "dulwich.contrib",
  53. "dulwich.tests",
  54. ]
  55. include-package-data = true
  56. zip-safe = false
  57. script-files = [
  58. "bin/dul-receive-pack",
  59. "bin/dul-upload-pack",
  60. ]
  61. license-files = ["COPYING"]
  62. [tool.setuptools.dynamic]
  63. version = {attr = "dulwich.__version__"}
  64. [tool.ruff.lint]
  65. select = [
  66. "ANN",
  67. "D",
  68. "E",
  69. "F",
  70. "I",
  71. "PIE",
  72. "UP",
  73. "RSE",
  74. "RUF",
  75. ]
  76. ignore = [
  77. "ANN001",
  78. "ANN002",
  79. "ANN003",
  80. "ANN101", # missing-type-self
  81. "ANN102",
  82. "ANN201",
  83. "ANN202",
  84. "ANN204",
  85. "ANN205",
  86. "ANN206",
  87. "D100",
  88. "D101",
  89. "D102",
  90. "D103",
  91. "D104",
  92. "D105",
  93. "D107",
  94. "D204",
  95. "D205",
  96. "D417",
  97. "E501", # line too long
  98. "E741", # ambiguous variable name
  99. ]
  100. [tool.ruff.lint.pydocstyle]
  101. convention = "google"
  102. [tool.cibuildwheel]
  103. environment = {PATH="$HOME/.cargo/bin:$PATH"}
  104. before-build = "pip install -U setuptools-rust && curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y && rustup show"
  105. [tool.cibuildwheel.linux]
  106. skip = "*-musllinux_*"
  107. archs = ["auto", "aarch64"]
  108. [[tool.cibuildwheel.overrides]]
  109. select = "*-macosx_arm64"
  110. before-build = "pip install -U setuptools-rust && curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y && rustup target add x86_64-apple-darwin"