mirror of
https://github.com/vee1e/supplicant.git
synced 2026-09-01 17:57:15 +00:00
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+.
21 lines
494 B
TOML
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"]
|