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
|
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[tool.mypy]
warn_redundant_casts = true
warn_unused_configs = true
check_untyped_defs = true
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
disallow_incomplete_defs = false
[project]
name = "debmutate"
authors = [{name = "Jelmer Vernooij", email = "jelmer@debian.org"}]
description = "manipulation of Debian package control files"
readme = "README.md"
license = "GPL-2.0-or-later"
requires-python = ">=3.8"
dependencies = [
"python_debian>=0.1.44",
"python-tr",
"merge3",
"typing_extensions; python_version < '3.11'",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://salsa.debian.org/jelmer/debmutate"
Repository = "https://salsa.debian.org/jelmer/debmutate.git"
[project.optional-dependencies]
debcargo = ["tomlkit", "semver"]
watch = ["pcre2==0.4", "beautifulsoup4"]
dev = [
"ruff==0.14.2"
]
[tool.setuptools]
script-files = [
"scripts/deb-enable-rrr",
"scripts/drop-mia-uploaders",
"scripts/update-rust-deps",
]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.package-data]
debmutate = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "debmutate.__version__"}
[tool.ruff.lint]
select = [
"ANN",
"D",
"E",
"F",
"I",
"UP",
]
ignore = [
"ANN001",
"ANN002",
"ANN003",
"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"
|