File: pyproject.toml

package info (click to toggle)
dulwich 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,388 kB
  • sloc: python: 99,991; makefile: 163; sh: 67
file content (182 lines) | stat: -rw-r--r-- 4,713 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"

[project]
name = "dulwich"
description = "Python Git Library"
readme = "README.rst"
authors = [{name = "Jelmer Vernooij", email = "jelmer@jelmer.uk"}]
license = "Apache-2.0 OR GPL-2.0-or-later"
keywords = ["vcs", "git"]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: 3.14",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
    "Operating System :: POSIX",
    "Operating System :: Microsoft :: Windows",
    "Topic :: Software Development :: Version Control",
]
requires-python = ">=3.10"
dependencies = [
    "urllib3>=2.2.2",
    'typing_extensions >=4.6.0 ; python_version < "3.12"',
]
dynamic = ["version"]
license-files = ["COPYING"]

[project.urls]
Homepage = "https://www.dulwich.io/"
Repository = "https://www.dulwich.io/code/"
GitHub = "https://github.com/dulwich/dulwich"
"Bug Tracker" = "https://github.com/dulwich/dulwich/issues"

[project.optional-dependencies]
fastimport = ["fastimport"]
https = ["urllib3>=2.2.2"]
pgp = ["gpg"]
paramiko = ["paramiko"]
colordiff = ["rich"]
dev = [
    "ruff==0.14.10",
    "mypy==1.19.1",
    "dissolve>=0.1.1",
    "codespell==2.4.1",
]
merge = ["merge3"]
fuzzing = ["atheris"]
patiencediff = ["patiencediff"]
aiohttp = ["aiohttp"]

[project.scripts]
dulwich = "dulwich.cli:main"

[tool.mypy]
strict = true
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
strict_equality = true
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = "atheris"
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = "fastimport"
ignore_missing_imports = true
no_implicit_reexport = false
disallow_untyped_calls = false
warn_return_any = false

[[tool.mypy.overrides]]
module = "fastimport.*"
ignore_missing_imports = true
no_implicit_reexport = false
disallow_untyped_calls = false
warn_return_any = false

[[tool.mypy.overrides]]
module = "patiencediff"
ignore_missing_imports = true
no_implicit_reexport = false
disallow_untyped_calls = false
warn_return_any = false

[[tool.mypy.overrides]]
module = "merge3"
ignore_missing_imports = true
disallow_untyped_calls = false
warn_return_any = false

[[tool.mypy.overrides]]
module = "sshsig.*"
ignore_missing_imports = true
disallow_untyped_calls = false
warn_return_any = false

[tool.setuptools]
packages = [
    "dulwich",
    "dulwich.aiohttp",
    "dulwich.cloud",
    "dulwich.contrib",
    "dulwich.porcelain",
    "dulwich.tests",
]
include-package-data = true
zip-safe = false
script-files = [
    "bin/dul-receive-pack",
    "bin/dul-upload-pack",
]

[tool.setuptools.dynamic]
version = {attr = "dulwich.__version__"}

[tool.ruff.lint]
select = [
    "ANN",
    "D",
    "E",
    "F",
    "I",
    "PIE",
    "UP",
    "RSE",
    "RUF",
]
ignore = [
    "ANN001",
    "ANN002",
    "ANN003",
    "ANN201",
    "ANN202",
    "ANN204",
    "ANN205",
    "ANN206",
    "E501",  # line too long
]

[tool.ruff.lint.pydocstyle]
convention = "google"

[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["D"]  # Don't require docstrings in tests
"fuzzing/**/*.py" = ["D"]  # Don't require docstrings in fuzzing
"examples/**/*.py" = ["D"]  # Don't require docstrings in examples
"devscripts/**/*.py" = ["D"]  # Don't require docstrings in devscripts
"docs/conf.py" = ["D"]  # Don't require docstrings in docs config
"setup.py" = ["D"]  # Don't require docstrings in setup.py

[tool.cibuildwheel]
skip = ""
environment = {PATH="$HOME/.cargo/bin:$PATH"}
before-build = "pip install -U setuptools-rust && curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y && rustup show"

[tool.cibuildwheel.linux]
skip = "*-musllinux_*"
archs = ["auto", "aarch64"]
before-build = "pip install -U setuptools-rust && yum -y install libatomic && curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y && rustup show"

[tool.cibuildwheel.macos]
archs = ["auto", "universal2", "x86_64", "arm64"]
before-all = "rustup target add x86_64-apple-darwin aarch64-apple-darwin"
skip = """\
    cp310-macosx_x86_64 cp310-macosx_universal2 \
    cp311-macosx_x86_64 cp311-macosx_universal2 \
    cp312-macosx_x86_64 cp312-macosx_universal2 \
    cp313-macosx_x86_64 cp313-macosx_universal2 \
    """