enodia-sentinal/pyproject.toml
Luna 586f74b929 Relicense under GPL-3.0-or-later
Replace MIT with the full GNU GPLv3 text, update license metadata in
pyproject.toml (+ trove classifiers) and PKGBUILD, and add
SPDX-License-Identifier headers to all Python modules and shell scripts.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-31 06:52:34 -07:00

31 lines
1 KiB
TOML

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "enodia-sentinel"
version = "0.2.0"
description = "Host intrusion-detection daemon — signature-based detection of reverse shells, LD_PRELOAD rootkits, fileless malware, and persistence tampering"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "Enodia" }]
keywords = ["security", "ids", "hids", "detection", "linux", "forensics"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
# Zero runtime dependencies — stdlib only, by design (a system security
# daemon should not pull in a dependency tree it has to trust and update).
dependencies = []
[project.scripts]
enodia-sentinel = "enodia_sentinel.cli:main"
[project.optional-dependencies]
dev = ["pytest"]
[tool.setuptools.packages.find]
include = ["enodia_sentinel*"]