-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1017 Bytes
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
[project]
name = "attackmate-client"
description = "Client Class for remote control and execution of AttackMate instances."
authors = [
{name = "Thorina Boenke", email = "thorina.boenke@ait.ac.at"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "EUPL-1.2"}
dynamic = ["version"]
dependencies = [
"httpx",
"mkdocs>=1.6.1",
"prek>=0.3.2",
"PyYAML",
"pydantic"
]
[dependency-groups]
dev = [
"mike>=2.1.3",
"pytest>=8.4.1",
"pytest-mock",
"pytest-cov>=6.2.1",
"types-requests",
"mkdocs>=1.5.0",
"mkdocs-material>=9.5.0",
"pymdown-extensions>=10.0"
]
[project.scripts]
attackmate-client = "attackmate_client.cli:main"
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "attackmate_client.metadata.__version__"}
[tool.flake8]
max-line-length = 110
extend-ignore = ["E203", "W503"]