forked from login-securite/DonPAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 915 Bytes
/
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
[tool.poetry]
name = "donpapi"
version = "1.0.0"
description = "Dumping revelant information on compromised targets without AV detection"
authors = ["Login Securite <[email protected]>"]
readme = "readme.md"
homepage = "https://github.com/login-securite/DonPAPI"
repository = "https://github.com/login-securite/DonPAPI"
exclude = []
include = ["config/*", "lazagne/*", "lib/*", "software/*", "*.py"]
classifiers = [
'Environment :: Console',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
packages = [
{ include = "lib", from = "." }
]
[tool.poetry.scripts]
donpapi = 'DonPAPI:main'
[tool.poetry.dependencies]
python = "^3.9"
impacket = "^0.9.23"
pyasn = "^1.6.1"
LnkParse3 = "^1.2.0"
wheel = "^0.37.0"
M2Crypto = "^0.38.0"
pycryptodome = "^3.11.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"