supplicant/pyproject.toml
vee1e 0dc54bc4d0
supplicant: dependency version-diff forensics tool
Recursive dependency-tree scanning for npm and PyPI, a security-scored
version-diff engine, baseline-vs-self deviation detection, and forensics
for unpublished (yanked) versions reconstructed from CDN archives.
Stdlib-only Python 3.11+.
2026-08-15 05:09:38 +05:30

21 lines
494 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "supplicant"
version = "0.1.0"
description = "Supply-chain dependency forensics: does this version look like itself?"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "supplicant" }]
[project.scripts]
supplicant = "supplicant.cli:main"
[tool.setuptools.packages.find]
include = ["supplicant*"]
[tool.pytest.ini_options]
testpaths = ["tests"]