-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (39 loc) · 1.33 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
[project]
name = "kathara_lab_checker"
version = "0.1.6"
description = "Tool to automatically check Kathará network scenarios based on a configuration file."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
keywords = ["Kathara", "NETWORK-EMULATION"]
authors = [
{ name = "Kathara Framework", email = "[email protected]" }
]
maintainers = [
{ name = "Tommaso Caiazzi", email = "[email protected]" },
{ name = "Lorenzo Ariemma", email = "[email protected]" }
]
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.11"
]
dependencies = [
"kathara>=3.7.7",
"jc>=1.24.0",
"openpyxl>=3.1.2",
"tqdm>=4",
"coloredlogs~=15.0.1"
]
[project.scripts]
kathara_lab_checker = "kathara_lab_checker.__main__:main"
[project.urls]
"Bug Reports" = "https://github.com/KatharaFramework/kathara-lab-checker/issues"
"Source" = "https://github.com/KatharaFramework/kathara-lab-checker"
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"