-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
37 lines (32 loc) · 889 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
[tool.poetry]
name = "dumpscan"
version = "0.1.1"
description = "Scanning memory dumps for secrets using volatility and yara"
authors = ["Leron Gray <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.4.1"
rich = "^12.3.0"
yara-python = ">=3.8.0"
cryptography = "^37.0.2"
cffi = "^1.15.0"
construct = "^2.10.68"
rich-click = {extras = ["typer"], version = "^1.4"}
pycryptodome = "^3.14.1"
jsonschema = "^4.5.1"
capstone = "^5.0.0rc2"
arrow = "^1.2.2"
pefile = "^2022.5.30"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
black = "^22.3.0"
volatility3 = {git = "https://github.com/volatilityfoundation/volatility3", rev = "develop"}
[tool.poetry.scripts]
dumpscan = "dumpscan.main:app"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.1.0a6"]
build-backend = "poetry.core.masonry.api"