-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathpyproject.toml
84 lines (76 loc) · 1.93 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "powerhub"
version = "2.0.9"
authors = [
{name = "Adrian Vollmer", email = "[email protected]"},
]
description = "A post exploitation tool based on a web application, focusing on bypassing endpoint protection and application whitelisting"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["pentest", "c2", "powershell", "obfuscation", "post-exploitation"]
license = {text = "MIT License"}
classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
'cheroot',
'cryptography>=42',
'dnspython>=2.3',
'Flask>=1.0.2',
'Flask-SocketIO>=5.3.0',
'flask-sqlalchemy>=3.0',
'importlib-metadata; python_version<"3.8"',
'Jinja2>=3.0',
'pyOpenSSL',
'python-magic',
"requests",
'service_identity',
'simple-websocket',
'sqlalchemy>=2.0',
'python-socketio>=5.8',
'twisted>=18.9.0',
'watchdog',
'werkzeug>=0.15',
'wsgidav>=3.0.0',
]
[tool.setuptools]
packages = ["powerhub"]
[project.urls]
"Homepage" = "https://github.com/AdrianVollmer/PowerHub"
"Bug Tracker" = "https://github.com/AdrianVollmer/PowerHub/issues"
[project.scripts]
powerhub = "powerhub.__main__:main"
power-obfuscate = "powerhub.__main__:power_obfuscate"
[project.optional-dependencies]
tests = [
'pytest',
'flake8',
'beautifulsoup4',
'lxml',
]
dev = [
'tox',
]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py,lint
isolated_build = True
[testenv:py]
extras = tests
commands = pytest
deps = .[tests]
[testenv:lint]
skip_install = true
deps = .[tests]
commands = flake8 powerhub tests
"""