-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
86 lines (78 loc) · 1.9 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
[build-system]
requires = ["setuptools>=61.2", "setuptools_rust"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = ["ruff==0.9.2"]
[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.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]
target-version = "py37"
[tool.ruff.lint.pydocstyle]
convention = "google"
[project]
name = "subvertpy"
description = "Alternative Python bindings for Subversion"
readme = "README.md"
keywords = [
"svn",
"subvertpy",
"subversion",
"bindings",
]
license = {text = "LGPLv2.1 or later"}
authors = [{name = "Jelmer Vernooij", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"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",
"Operating System :: POSIX",
"Topic :: Software Development :: Version Control",
]
urls = {Homepage = "https://github.com/jelmer/subvertpy"}
dynamic = ["version"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "subvertpy.__version__"}