nmap/ndiff/pyproject.toml
2026-03-16 17:25:07 +00:00

30 lines
783 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ndiff"
license = {text = "Nmap License (https://nmap.org/book/man-legal.html)"}
dynamic = ["version"]
authors = [{name = "The Nmap Project"}]
description = "Nmap scan diff tool"
readme = {file = "README", content-type = "text/plain"}
[project.urls]
Homepage = "https://nmap.org/ndiff/"
Documentation = "https://nmap.org/book/ndiff-man.html"
Repository = "https://github.com/nmap/nmap.git"
Issues = "https://github.com/nmap/nmap/issues"
Changelog = "https://nmap.org/changelog"
[project.scripts]
ndiff = "ndiff:run_main"
[tool.setuptools]
py-modules = ["ndiff"]
[tool.setuptools.dynamic]
version = {attr = "Version.VERSION"}
#[tool.setuptools.packages.find]
#include = ["ndiff"]