-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.68 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "Exegol"
dynamic = ["version"]
description = "Python wrapper to use Exegol, a container based fully featured and community-driven hacking environment."
authors = [
{ name = "Dramelac", email = "dramelac@pm.me" },
{ name = "Shutdown", email = "nwodtuhs@pm.me" },
]
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["pentest", "redteam", "ctf", "exegol"]
requires-python = ">=3.9"
dependencies = [
"docker~=7.1.0",
"requests~=2.32.3",
"rich~=13.7.1",
"GitPython~=3.1.43",
"PyYAML>=6.0.2",
"argcomplete~=3.5.0",
"tzlocal~=5.2; platform_system != 'Linux'"
]
[dependency-groups]
dev = ["pre-commit"]
testing = ["mypy", "types-PyYAML", "types-requests", "types-tzlocal", "pytest"]
[project.scripts]
exegol = "exegol.manager.ExegolController:main"
[project.urls]
Homepage = "https://exegol.readthedocs.io/"
Documentation = "https://exegol.readthedocs.io/"
Repository = "https://github.com/ThePorgs/Exegol"
Issues = "https://github.com/ThePorgs/Exegol/issues"
Funding = "https://patreon.com/nwodtuhs"
[tool.pdm]
[tool.pdm.version]
source = "file"
path = "exegol/config/ConstantConfig.py"
[tool.pdm.build]
excludes = ["tests"]