-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77.0"]
[project]
name = "netmap"
license = "GPL-3.0-or-later"
description = "This is a python class to use nmap and access scan results from python3"
authors = [{ name = "Alexandre Norman", email = "norman@xael.org" }]
requires-python = ">=3.9"
keywords = ["nmap", "portscanner", "network", "sysadmin"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Firewalls",
"Topic :: System :: Networking :: Monitoring",
]
dynamic = ["version", "readme"]
[project.urls]
"Source code" = "https://github.com/home-assistant-libs/python-nmap"
[tool.setuptools.dynamic]
version = {attr = "nmap.__version__"}
readme = {file = ["README.rst", "CHANGELOG"]}
[tool.setuptools.packages.find]
include = ["nmap*"]