20 lines
549 B
TOML
20 lines
549 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "netfishing-discovery-server"
|
|
version = "0.7.1-alpha"
|
|
description = "Ephemeral public-room directory for NETfishing"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
license = { file = "LICENSE" }
|
|
classifiers = [
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
]
|
|
|
|
[project.scripts]
|
|
netfishing-discovery-server = "netfishing_discovery.server:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["netfishing_discovery*"]
|