1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-04 13:49:03 +00:00
Files
nmap/zenmap/pyproject.toml
2025-05-30 00:10:25 +00:00

59 lines
1.5 KiB
TOML

[build-system]
requires = ["setuptools", "setuptools-gettext"]
build-backend = "setuptools.build_meta"
[project]
name = "zenmap"
license = "LicenseRef-Nmap-License"
license-files = ["LICENSE", "COPYING_HIGWIDGETS"]
dynamic = ["version"]
authors = [{name = "The Nmap Project"}]
description = "Nmap frontend and results viewer"
readme = {file = "README", content-type = "text/plain"}
dependencies = [
"PyGObject",
]
[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"
[tool.setuptools]
packages = [
"zenmapCore",
"zenmapCore.data.config",
"zenmapCore.data.docs",
"zenmapCore.data.locale",
"zenmapCore.data.misc",
"zenmapCore.data.pixmaps",
"zenmapCore.data.pixmaps.radialnet",
"zenmapGUI",
"zenmapGUI.higwidgets",
"radialnet",
"radialnet.bestwidgets",
"radialnet.core",
"radialnet.gui",
"radialnet.util",
]
[tool.setuptools.dynamic]
version = {attr = "zenmapCore.Version.VERSION"}
[tool.setuptools.package-data]
"zenmapCore.data.pixmaps" = ["*.gif", "*.png"]
"zenmapCore.data.pixmaps.radialnet" = ["*.png"]
"zenmapCore.data.config" = ["zenmap.conf", "scan_profile.usp", "zenmap_version"]
"zenmapCore.data.docs" = ["*.html"]
"zenmapCore.data.locale" = ["*/LC_MESSAGES/zenmap.mo"]
"zenmapCore.data.misc" = ["*.xml"]
[tool.setuptools-gettext]
source_dir = "zenmapCore/data/locale"
build_dir = "zenmapCore/data/locale"