-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
60 lines (50 loc) · 1.41 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
59
60
[tool.poetry]
name = "baddns"
version = "1.4.0"
description = "Check subdomains for subdomain takeovers and other DNS tomfoolery"
authors = ["liquidsec <[email protected]>"]
repository = "https://github.com/blacklanternsecurity/baddns"
homepage = "https://github.com/blacklanternsecurity/baddns"
documentation = "https://www.blacklanternsecurity.com/baddns/"
license = "GPL-3.0"
readme = "README.md"
include = ["signatures/**/*"]
[tool.poetry.dependencies]
python = "^3.9"
pyyaml = "^6.0.1"
dnspython = "^2.4.2"
colorama = "^0.4.6"
python-whois = "^0.9.4"
tldextract = "^5.1.1"
python-dateutil = "2.9.0.post0"
setuptools = ">=70,<76"
httpx = "^0.27.2"
[tool.poetry.group.dev.dependencies]
pyfakefs = "^5.2.3"
requests-mock = "^1.11.0"
pytest-cov = ">=5,<7"
pytest-asyncio = ">=0.21.1,<0.25.0"
mock = "^5.1.0"
pytest-mock = "^3.11.1"
poetry-dynamic-versioning = {extras = ["plugin"], version = "^1.2.0"}
requests = "^2.31.0"
pytest = "^8.3.3"
pytest-httpx = "^0.33.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.8"
[tool.black]
line-length = 119
[tool.poetry.scripts]
baddns = 'baddns.cli:main'
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning"
]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
metadata = true
format = 'v1.4.{distance}'