-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (61 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (61 loc) · 1.56 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "baddns"
dynamic = ["version"]
description = "Check subdomains for subdomain takeovers and other DNS tomfoolery"
authors = [{name = "liquidsec", email = "paul.mueller08@gmail.com"}]
license = "GPL-3.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pyyaml>=6.0.1",
"dnspython>=2.4.2",
"blastdns==1.9.1",
"colorama>=0.4.6",
"python-whois>=0.9.6",
"tldextract>=5.1.1",
"python-dateutil==2.9.0.post0",
"blasthttp>=0.2.0",
"cloudcheck>=10,<11",
]
[project.urls]
Repository = "https://github.com/blacklanternsecurity/baddns"
Homepage = "https://github.com/blacklanternsecurity/baddns"
Documentation = "https://www.blacklanternsecurity.com/baddns/"
[project.scripts]
baddns = "baddns.cli:main"
[dependency-groups]
dev = [
"pytest>=8.3.3",
"pytest-cov>=5,<8",
"pytest-asyncio>=0.21.1,<1.5.0",
"pytest-mock>=3.11.1",
"pyfakefs>=5.10,<7.0",
"mock>=5.1.0",
"ruff>=0.15.4",
]
docs = [
"mkdocs>=1.5.3",
"mkdocs-material>=9.5.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "baddns/__version__.py"
[tool.hatch.build.targets.sdist]
include = ["baddns/**", "signatures/**"]
[tool.hatch.build.targets.wheel]
packages = ["baddns"]
[tool.ruff]
line-length = 119
[tool.ruff.lint]
select = ["F", "E722"]
ignore = ["F403", "F405", "F541"]
[tool.ruff.lint.per-file-ignores]
"*/__init__.py" = ["F401", "F403"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning"
]
[tool.coverage.run]
omit = ["baddns/scripts/*"]