forked from ArnesSI/netbox-powerdns-sync
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (20 loc) · 707 Bytes
/
pyproject.toml
File metadata and controls
24 lines (20 loc) · 707 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
[tool.poetry]
name = "netbox-powerdns-sync"
version = "1.0.0"
description = "Sync DNS records in PowerDNS with NetBox"
authors = ["Matej Vadnjal <matej.vadnjal@arnes.si>", "Wieger Bontekoe <wieger.bontekoe@productsup.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ArnesSI/netbox-powerdns-sync/"
keywords = ["netbox", "netbox-plugin", "powerdns"]
packages = [{include = "netbox_powerdns_sync"}]
include = ["netbox_powerdns_sync/templates/*.html"]
[tool.poetry.dependencies]
python = ">=3.10"
python-powerdns = "^2.1.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pytest = "^7.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"