-
-
Notifications
You must be signed in to change notification settings - Fork 401
/
pyproject.toml
129 lines (117 loc) · 2.97 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dulwich"
description = "Python Git Library"
readme = "README.rst"
authors = [{name = "Jelmer Vernooij", email = "jelmer@jelmer.uk"}]
license = {text = "Apachev2 or later or GPLv2"}
keywords = ["vcs", "git"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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.9"
dependencies = [
"urllib3>=1.25",
]
dynamic = ["version"]
[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>=1.24.1"]
pgp = ["gpg"]
paramiko = ["paramiko"]
dev = [
"ruff==0.7.3",
"mypy==1.13.0"
]
[project.scripts]
dulwich = "dulwich.cli:main"
[tool.mypy]
ignore_missing_imports = true
[tool.setuptools]
packages = [
"dulwich",
"dulwich.cloud",
"dulwich.contrib",
"dulwich.tests",
]
include-package-data = true
zip-safe = false
script-files = [
"bin/dul-receive-pack",
"bin/dul-upload-pack",
]
license-files = ["COPYING"]
[tool.setuptools.dynamic]
version = {attr = "dulwich.__version__"}
[tool.ruff.lint]
select = [
"ANN",
"D",
"E",
"F",
"I",
"PIE",
"UP",
"RSE",
"RUF",
]
ignore = [
"ANN001",
"ANN002",
"ANN003",
"ANN101", # missing-type-self
"ANN102",
"ANN201",
"ANN202",
"ANN204",
"ANN205",
"ANN206",
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D107",
"D204",
"D205",
"D417",
"E501", # line too long
"E741", # ambiguous variable name
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.cibuildwheel]
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"]
[tool.cibuildwheel.macos]
archs = ["auto", "universal2", "x86_64", "arm64"]
before-all = "rustup target add x86_64-apple-darwin aarch64-apple-darwin"
skip = """\
cp39-macosx_x86_64 cp39-macosx_universal2 \
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 \
"""