-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 1.22 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "shadowmap"
version = "1.0.0"
description = "Passive attack surface mapper using certificate transparency, DNS enumeration, and AI risk analysis"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Srinikhil Chakilam", email = "4531201+rawqubit@users.noreply.github.com" }]
keywords = ["security", "recon", "osint", "attack-surface", "passive-scanning", "dns"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Internet",
]
requires-python = ">=3.10"
dependencies = [
"openai>=1.0",
"click>=8.0",
"rich>=13.0",
"httpx>=0.25",
"dnspython>=2.4",
]
[project.scripts]
shadowmap = "main:cli"
[project.urls]
Homepage = "https://github.com/rawqubit/shadowmap"
Repository = "https://github.com/rawqubit/shadowmap"
"Bug Tracker" = "https://github.com/rawqubit/shadowmap/issues"