-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 962 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 962 Bytes
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
[project]
name = "infraguard"
version = "0.3.1"
description = "Red team infrastructure tracker and C2 redirector"
readme = "README.md"
requires-python = ">=3.12"
license = "BSD-2-Clause"
dependencies = [
"click>=8.1",
"pydantic>=2.5",
"pydantic-settings>=2.1",
"pyyaml>=6.0",
"structlog>=24.1",
"httpx>=0.27",
"tenacity>=9.0",
"starlette>=0.36",
"uvicorn[standard]>=0.27",
"aiosqlite>=0.20",
"cryptography>=42.0",
"prometheus-client>=0.24.1",
]
[project.optional-dependencies]
web = ["fastapi>=0.109", "jinja2>=3.1"]
tui = ["textual>=0.47"]
geoip = ["maxminddb>=2.5"]
dns = ["aiodns>=3.1"]
dns-listener = ["dnspython>=2.6"]
mqtt-listener = ["aiomqtt>=2.0"]
all = ["infraguard[web,tui,geoip,dns,dns-listener,mqtt-listener]"]
[project.scripts]
infraguard = "infraguard.main:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["infraguard"]