mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 16:57:06 +00:00
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-gettext"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "zenmap"
|
|
license = {file = "LICENSE", content-type = "text/plain"}
|
|
dynamic = ["version"]
|
|
authors = [{name = "The Nmap Project"}]
|
|
description = "Nmap frontend and results viewer"
|
|
readme = {file = "README", content-type = "text/plain"}
|
|
dependencies = [
|
|
"PyGObject",
|
|
]
|
|
requires-python = ">= 3.8"
|
|
|
|
[project.urls]
|
|
Homepage = "https://nmap.org/zenmap/"
|
|
Documentation = "https://nmap.org/book/zenmap.html"
|
|
Repository = "https://github.com/nmap/nmap.git"
|
|
Issues = "https://github.com/nmap/nmap/issues"
|
|
Changelog = "https://nmap.org/changelog"
|
|
|
|
[project.gui-scripts]
|
|
zenmap = "zenmapGUI.App:run"
|
|
|
|
[project.scripts]
|
|
ndiff = "ndiff:run_main"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["ndiff"]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["zenmapCore", "zenmapGUI", "radialnet"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "zenmapCore.Version.VERSION"}
|
|
|
|
[tool.setuptools-gettext]
|
|
source_dir = "zenmapCore/data/locale"
|
|
build_dir = "zenmapCore/data/locale"
|