-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
63 lines (57 loc) · 1.68 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "subdomainenum"
version = "0.14.2"
description = "Subdomain enumeration CLI: passive + active discovery with verdict summary"
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0"
license-files = ["LICENSE"]
authors = [{ name = "t0kubetsu" }]
keywords = [
"subdomain",
"enumeration",
"recon",
"dns",
"osint",
"security",
"pentesting",
"cli",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Security",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"dnspython>=2.6",
"rich>=13.7",
"typer>=0.12",
]
[project.urls]
Homepage = "https://github.com/NC3-TestingPlatform/subdomainenum"
Repository = "https://github.com/NC3-TestingPlatform/subdomainenum"
Issues = "https://github.com/NC3-TestingPlatform/subdomainenum/issues"
Changelog = "https://github.com/NC3-TestingPlatform/subdomainenum/blob/main/CHANGELOG.md"
[project.scripts]
subdomainenum = "subdomainenum.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["subdomainenum*"]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "pytest-mock>=3.12"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "--cov=subdomainenum --cov-report=term-missing"