-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpyproject.toml
38 lines (35 loc) · 1007 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "knetvis"
version = "0.1.2"
authors = [
{ name = "Samuel Arogbonlo", email = "[email protected]" },
]
description = "A CLI tool for Kubernetes Network Policy visualization"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"kubernetes>=28.1.0",
"networkx>=3.1",
"matplotlib>=3.7.1",
"click>=8.1.3",
"rich>=13.3.5",
"pyyaml>=6.0.1",
]
[project.scripts]
knetvis = "knetvis.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]