-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
36 lines (30 loc) · 934 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 = "ntfsdump"
version = "2.5.3"
description = "An efficient tool for extracting files, directories, and alternate data streams directly from NTFS image files."
authors = ["sumeshi <sum3sh1@protonmail.com>"]
license = "LGPLv3+"
readme = "README.md"
repository = "https://github.com/sumeshi/ntfsdump"
homepage = "https://github.com/sumeshi/ntfsdump"
keywords = ['Security', 'Forensics', 'DFIR', 'Windows', 'NTFS']
[tool.poetry.scripts]
ntfsdump = 'ntfsdump.views.NtfsDumpView:entry_point'
[tool.poetry.dependencies]
python = "^3.11"
pytsk3 = "^20231007"
libewf-python = "^20230212"
libvmdk-python = "^20221124"
libvhdi-python = "^20221124"
poetry = "^1.7.0"
pytest = "^7.4.3"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
mypy = "^1.7.0"
flake8 = "^6.1.0"
poetry = "^1.1.13"
pytest = "^7.0.1"
nuitka = "^1.8.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"