-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 1.08 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
35
36
37
38
39
40
41
42
[project]
name = "whoson"
version = "0.3.0"
description = "Lightweight subnet audit tool -- see what is alive on your network"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{ name = "Dani Issac", email = "daniissac@gmail.com" }]
keywords = ["network", "scanner", "nmap", "subnet", "topology"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
]
dependencies = [
"python-nmap",
"Pillow",
]
[project.urls]
Homepage = "https://github.com/daniissac/whoson"
Repository = "https://github.com/daniissac/whoson"
Issues = "https://github.com/daniissac/whoson/issues"
[project.scripts]
whoson = "cli:main"
[project.optional-dependencies]
dev = ["pytest"]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["cli", "config"]
[tool.setuptools.packages.find]
include = ["discovery*", "graph*", "utils*"]