-
-
Notifications
You must be signed in to change notification settings - Fork 247
/
pyproject.toml
40 lines (33 loc) · 883 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
37
38
39
40
[tool.poetry]
name = "lsassy"
version = "3.1.12"
description = "Tool to remotely extract credentials"
readme = "README.md"
homepage = "https://github.com/hackndo/lsassy"
repository = "https://github.com/hackndo/lsassy"
keywords = ["lsassy", "lsass", "pypykatz", "credentials"]
authors = ["pixis <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
netaddr = "^0.8.0"
pypykatz = "^0.6.3"
impacket = ">= 0.10.0"
rich = ">=10.6.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
coverage = "^5.3.1"
pytest-cov = "^2.10.1"
nox = "^2020.8.22"
pytest-mock = "^3.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
lsassy = "lsassy.console:main"
[tool.coverage.paths]
source = ["lsassy", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["lsassy"]
[tool.coverage.report]
show_missing = true