mdns-termux/pyproject.toml

25 lines
610 B
TOML

[project]
name = "mdns-termux"
version = "0.3.0"
description = "mDNS + Tailscale hostname resolution and DNS-SD tools for Termux"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Andres Garcia" }]
dependencies = ["zeroconf>=0.100"]
[project.optional-dependencies]
test = ["pytest>=7"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.setuptools]
package-dir = { "" = "lib" }
packages = ["mdns_tools"]
script-files = [
"bin/mdns", "bin/mdns-resolve", "bin/mdns-publish.py",
"bin/resolve", "bin/ssh-mdns-proxy", "bin/ssh-fallback",
]