-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1.02 KB
/
pyproject.toml
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
[tool.poetry]
name = "plotcap"
version = "1.1.1"
description = "PlotCap - a simple network visualization tool"
authors = ["Darknet ehf <[email protected]>"]
maintainers = ["Darknet ehf <[email protected]>"]
homepage = "https://github.com/darknetehf/plotcap"
repository = "https://github.com/darknetehf/plotcap"
keywords = ["packaging", "poetry"]
classifiers = [
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Security",
"Topic :: Scientific/Engineering :: Visualization"
]
license = "MIT"
readme = "README.rst"
packages = [{include = "plotcap", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
pyyaml = "^6.0.1"
netaddr = "^1.3.0"
scapy = "^2.5.0"
pyvis = "^0.3.2"
netgraph = "^4.13.2"
networkx = "^3.3"
[tool.poetry.scripts]
plotcap = "plotcap.cli:main"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
docutils = "^0.20.1"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"