-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (70 loc) · 1.9 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
[project]
name = "mimikatz-credentials_collector"
license = "GPLv3"
requires-python = "^3.11"
[tool.black]
line-length = 100
[tool.cruft]
skip = [
"mimikatz-credentials_collector/__init__.py",
"README.md",
"CHANGELOG.md",
"vulture_allowlist.py"
]
[tool.isort]
known_first_party = "mimikatz-credentials_collector"
line_length = 100
skip_glob="**/__init__.py"
### for compatibility with black
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.mypy]
check_untyped_defs = true
[tool.pytest.ini_options]
minversion = "6.0"
log_cli = 1
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)s] %(module)s.%(funcName)s.%(lineno)d: %(message)s"
log_cli_date_format = "%H:%M:%S"
addopts = "-v --capture=sys tests"
[tool.vulture]
exclude=[]
paths = ["mimikatz_credentials_collector", "vulture_allowlist.py"]
[tool.poetry]
name = "mimikatz-credentials_collector"
description = "Mimikatz Credentials Collector Agent Plugin for Infection Monkey"
authors = ["Ilija Lazoroski <[email protected]>"]
license = "GPLv3"
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11"
]
repository = "https://github.com/guardicode/mimikatz-credentials_collector"
readme = "README.md"
include = ["CHANGELOG.md", "README.md"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
pypykatz = "^0.6.9"
[tool.poetry.dev-dependencies]
black = "24.3.0"
dlint = "0.14.1"
flake8 = "6.0.0"
isort = "5.12.0"
mypy = "1.5.1"
pudb = "^2022.1.2"
pynvim = "^0.4.3"
pytest = "^7.1.0"
pytest-cov = "^3.0.0"
pytest-xdist = "^3.3.1"
vulture = "2.9.1"
[tool.poetry.group.dev.dependencies]
monkey-types = "^1.0.0"
monkey-agentpluginapi = "^0.11.0"
agent-plugin-builder = "^0.5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"