-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 859 Bytes
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
[project]
name = "memdump-toolkit"
version = "1.0.0"
description = "Memory dump forensic analysis toolkit for Windows Minidumps"
authors = [{name = "Vision Security Labs"}]
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = ["minidump", "pefile", "rapidfuzz", "rich", "click", "pyyaml"]
[project.optional-dependencies]
yara = ["yara-python"]
dotnet = ["dnfile"]
capstone = ["capstone"]
all = ["yara-python", "dnfile", "capstone"]
[project.scripts]
memdump-toolkit = "memdump_toolkit.cli:main"
[project.urls]
Repository = "https://github.com/VisionSecurityLabs/memdump-toolkit"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = []
[tool.hatch.build.targets.wheel]
packages = ["memdump_toolkit"]
include = ["memdump_toolkit/rulesets.default.yml", "memdump_toolkit/signatures.default.yml"]