-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.53 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
59
60
61
62
63
64
[build-system]
requires = [
"setuptools>=61.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "eshu"
version = "0.0.1"
description = "A common-language platform for post-exploitation across multiple C2 frameworks."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
{ name = "Alexander Aviles", email = "alex@prodefense.example" },
{ name = "Yousif Alsabah", email = "yousif@prodefense.example" },
{ name = "Xun-Yang Leong", email = "xun@prodefense.example" },
{ name = "Alan Ingersoll", email = "alan@prodefense.example" },
{ name = "Prateek Ravindran",email = "prateek@prodefense.example" }
]
keywords = [
"post-exploitation",
"C2",
"sliver",
"metasploit",
"eshu"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent"
]
dependencies = [
"sliver-py>=0.0.19",
"pymetasploit3>=1.0.6",
"pluggy",
"toml>=0.10.0"
]
[project.urls]
"Homepage" = "https://github.com/ProDefense/Eshu"
"Bug Tracker" = "https://github.com/ProDefense/Eshu/issues"
[project.scripts]
"eshu-cli" = "eshu.orchestrator:main"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["eshu*"]