-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 loc) · 1.53 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
# SPDX-FileCopyrightText: 2024 Max Mehl <https://mehl.mx>
#
# SPDX-License-Identifier: GPL-3.0-only
[tool.poetry]
name = "inwx-dns-recordmaster"
version = "0.3.1"
description = "Manage DNS nameserver records of INWX domains via YAML files and API requests. Lightweight, version-control ready"
authors = ["Max Mehl <[email protected]>"]
readme = "README.md"
repository = "https://github.com/mxmehl/inwx-dns-recordmaster"
keywords = ["inwx", "dns", "nameserver", "automation", "configuration-management"]
license = "GPL-3.0-only"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Systems Administration",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
packages = [{ include = "recordmaster" }]
[tool.poetry.scripts]
inwx-dnsrm = "recordmaster.main:main"
[tool.poetry.dependencies]
python = "^3.9"
inwx-domrobot = "^3.1.0"
pyyaml = "^6.0.1"
platformdirs = "^4.2.0"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
pylama = "^8.4.1"
black = "^24.2.0"
isort = "^5.13.2"
mypy = "^1.8.0"
types-pyyaml = "^6.0.12.12"
types-toml = "^0.10.8.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# FORMATTING settings
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
# MYPY settings
[tool.mypy]
files = ["recordmaster/*.py"]