-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 912 Bytes
/
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
[tool.poetry]
name = "dnstest"
version = "0.1.0-alpha"
description = "A cli tool for testing DNS records match a provided yaml config file"
authors = ["Leon Smith <[email protected]>"]
readme = "README.md"
repository = "https://github.com/leonsmith/dnstest"
homepage = "https://github.com/leonsmith/dnstest"
keywords = [
"dns",
"test",
"dnstest",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Monitoring",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.5"
click = "^7.0"
PyYaml = "^5.1"
cerberus = "^1.2"
pydig = "^0.2.0"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
pytest-cov = "^2.6"
[tool.poetry.scripts]
dnstest = "dnstest.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"