-
Notifications
You must be signed in to change notification settings - Fork 64
/
pyproject.toml
58 lines (52 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "kathara"
version = "3.7.7"
description = "A lightweight container-based network emulation tool."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = ["NETWORK-EMULATION", "CONTAINERS", "NFV"]
authors = [
{ name = "Kathara Framework", email = "contact@kathara.org" }
]
maintainers = [
{ name = "Tommaso Caiazzi", email = "contact@kathara.org" },
{ name = "Mariano Scazzariello", email = "contact@kathara.org" },
{ name = "Lorenzo Ariemma", email = "contact@kathara.org" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Telecommunications Industry",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"binaryornot>=0.4.4",
"docker>=7.0.0",
"kubernetes>=23.3.0",
"requests>=2.22.0",
"slug>=2.0",
"deepdiff==6.2.2",
"pyroute2",
"rich",
"fs>=2.4.16",
"chardet",
"libtmux>=0.8.2; platform_system == 'darwin' or platform_system == 'linux'",
"appscript>=1.1.0; platform_system == 'darwin'",
"pypiwin32>=223; platform_system == 'win32'",
"windows-curses>=2.1.0; platform_system == 'win32'"
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
"Homepage" = "https://www.kathara.org"
"Bug Reports" = "https://github.com/KatharaFramework/Kathara/issues"
"Source" = "https://github.com/KatharaFramework/Kathara"
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"