-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (39 loc) · 1.04 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 = "attackmate"
authors = [
{name = "Wolfgang Hotwagner", email = "[email protected]"},
]
description = "AttackMate is an attack orchestration tool that executes full attack-chains based on playbooks."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["Pentest", "Attack", "Orchestration", "Hacking", "Simulating", "Attackchain"]
license = {text = "GPL-3.0"}
dependencies = [
"pydantic ~= 2.5",
"colorlog",
"pymetasploit3",
"pyaml",
"paramiko",
"sliver-py",
"tabulate",
"python-magic",
"httpx",
"httpx[http2]"
]
dynamic = ["version"]
[project.scripts]
attackmate = "attackmate.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# [tool.setuptools]
# py-modules = []
# packages = ["attackmate"]
# include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.package-data]
"attackmate.data" = ["*.tar.gz"]
[tool.setuptools.dynamic]
version = {attr = "attackmate.metadata.__version__"}