-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (55 loc) · 1.82 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ftagent"
version = "1.9.40"
description = "Flowtriq DDoS Detection Agent — real-time L3/L4/L7 traffic monitoring, incident detection, PCAP capture, and auto-mitigation"
readme = "README.md"
license = { text = "Other/Proprietary License" }
authors = [{ name = "Flowtriq", email = "hello@flowtriq.com" }]
keywords = ["ddos", "network", "monitoring", "security", "ids", "traffic", "detection"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: Other/Proprietary License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Security",
]
requires-python = ">=3.8"
dependencies = [
"requests>=2.28.0",
"scapy>=2.4.5",
"psutil>=5.9.0",
"colorama>=0.4.6",
]
[project.optional-dependencies]
# [full] kept as alias for backwards compat with pip install ftagent[full]
full = [
"requests>=2.28.0",
"scapy>=2.4.5",
"psutil>=5.9.0",
"colorama>=0.4.6",
"rich>=13.0.0",
]
tui = ["rich>=13.0.0"]
lite = ["requests>=2.28.0"]
[project.scripts]
ftagent = "ftagent:main"
[project.urls]
Homepage = "https://flowtriq.com"
Repository = "https://github.com/flowtriq/ftagent"
Documentation= "https://flowtriq.com/docs"
"Bug Tracker"= "https://github.com/flowtriq/ftagent/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["ftagent*"]