-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 765 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (28 loc) · 765 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dyndns"
description = "DynDNS IPv4 and/or IPv6 Dynamic DNS Client"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.8"
keywords = ["dns"]
dynamic = ["version"]
dependencies = [
"aiohttp",
"platformdirs",
"tomli >= 1.1.0; python_version < '3.11'",
]
[[project.authors]]
name = "Mark Blakeney"
email = "mark.blakeney@bullet-systems.net"
[project.urls]
Homepage = "https://github.com/bulletmark/dyndns"
[tool.setuptools_scm]
version_scheme = "post-release"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
ignore = ["SIM115", "SIM905", "BLE001", "PLW1510", "S110", "DTZ"]
# vim:se sw=2: