first commit

This commit is contained in:
2026-03-08 13:28:31 -04:00
commit 8a101892f2
28 changed files with 2519 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[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"