Add NETfishing discovery service

This commit is contained in:
Alexander Sellite 2026-08-10 10:19:57 -04:00
commit b5b3cc0211
13 changed files with 1013 additions and 0 deletions

16
pyproject.toml Normal file
View file

@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "netfishing-discovery-server"
version = "0.1.0"
description = "Ephemeral public-room directory for NETfishing"
requires-python = ">=3.11"
dependencies = []
[project.scripts]
netfishing-discovery-server = "netfishing_discovery.server:main"
[tool.setuptools.packages.find]
include = ["netfishing_discovery*"]