Files
portspoof_py/pyproject.toml
2026-03-08 13:28:31 -04:00

19 lines
465 B
TOML

[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "portspoof-py"
version = "1.0.0"
description = "Python asyncio rewrite of the portspoof TCP honeypot"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "GPL-2.0-or-later"}
dependencies = [] # zero runtime deps — stdlib only
[project.scripts]
portspoof-py = "portspoof_py.cli:main"
[project.urls]
Source = "https://github.com/drk1wi/portspoof"