-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.19 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
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hey403"
version = "1.3.0"
description = "DNS accessibility testing tool for identifying 403 errors and network restrictions"
readme = "DOC.md"
requires-python = ">=3.10"
authors = [
{ name = "Diramid", email = "diramidteam@gmail.com" }
]
license = "MIT"
license-files = ["LICENSE"]
keywords = ["dns", "cli", "security", "403", "http-testing", "network-troubleshooting"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Security",
"Topic :: Utilities"
]
dependencies = [
"dnspython>=2.7.0",
"requests>=2.32.3",
"rich>=13.9.4",
"typer>=0.15.2"
]
[project.urls]
Homepage = "https://github.com/Diramid/hey-403-cli"
Documentation = "https://github.com/Diramid/hey-403-cli/blob/main/README.md"
Issues = "https://github.com/Diramid/hey-403-cli/issues"
[project.scripts]
hey403 = "hey403.main:main"
[tool.setuptools]
packages = ["hey403"]