pyproject.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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.7",
  15. "Programming Language :: Python :: 3.8",
  16. "Programming Language :: Python :: 3.9",
  17. "Programming Language :: Python :: 3.10",
  18. "Programming Language :: Python :: 3.11",
  19. "Programming Language :: Python :: 3.12",
  20. "Programming Language :: Python :: Implementation :: CPython",
  21. "Programming Language :: Python :: Implementation :: PyPy",
  22. "Operating System :: POSIX",
  23. "Operating System :: Microsoft :: Windows",
  24. "Topic :: Software Development :: Version Control",
  25. ]
  26. requires-python = ">=3.7"
  27. dependencies = [
  28. "urllib3>=1.25",
  29. 'typing_extensions;python_version<="3.7"',
  30. 'setuptools ; python_version >= "3.12"',
  31. ]
  32. dynamic = ["version"]
  33. [project.urls]
  34. Homepage = "https://www.dulwich.io/"
  35. Repository = "https://www.dulwich.io/code/"
  36. GitHub = "https://github.com/dulwich/dulwich"
  37. "Bug Tracker" = "https://github.com/dulwich/dulwich/issues"
  38. [project.optional-dependencies]
  39. fastimport = ["fastimport"]
  40. https = ["urllib3>=1.24.1"]
  41. pgp = ["gpg"]
  42. paramiko = ["paramiko"]
  43. [project.scripts]
  44. dulwich = "dulwich.cli:main"
  45. [tool.mypy]
  46. ignore_missing_imports = true
  47. [tool.setuptools]
  48. packages = [
  49. "dulwich",
  50. "dulwich.cloud",
  51. "dulwich.contrib",
  52. ]
  53. include-package-data = true
  54. zip-safe = false
  55. script-files = [
  56. "bin/dul-receive-pack",
  57. "bin/dul-upload-pack",
  58. ]
  59. license-files = ["COPYING"]
  60. [tool.setuptools.dynamic]
  61. version = {attr = "dulwich.__version__"}
  62. [tool.ruff.lint]
  63. select = [
  64. "ANN",
  65. "D",
  66. "E",
  67. "F",
  68. "I",
  69. "PIE",
  70. "UP",
  71. "RSE",
  72. "RUF",
  73. ]
  74. ignore = [
  75. "ANN001",
  76. "ANN002",
  77. "ANN003",
  78. "ANN101", # missing-type-self
  79. "ANN102",
  80. "ANN201",
  81. "ANN202",
  82. "ANN204",
  83. "ANN205",
  84. "ANN206",
  85. "D100",
  86. "D101",
  87. "D102",
  88. "D103",
  89. "D104",
  90. "D105",
  91. "D107",
  92. "D204",
  93. "D205",
  94. "D417",
  95. "E501", # line too long
  96. "E741", # ambiguous variable name
  97. ]
  98. [tool.ruff]
  99. target-version = "py37"
  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_*"