-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 807 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
32
33
34
35
36
37
38
39
[project]
name = "ntfsfind"
dynamic = ["version"]
description = "An efficient tool for search files, directories, and alternate data streams directly from NTFS image files."
readme = "README.md"
license = "LGPL-3.0-or-later"
authors = [
{ name = "sumeshi", email = "sum3sh1@protonmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"ntfsdump>=3.0.3",
"mft>=0.6.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/ntfsfind/__about__.py"
[project.urls]
Homepage = "https://github.com/sumeshi/ntfsfind"
Repository = "https://github.com/sumeshi/ntfsfind"
[dependency-groups]
dev = [
"black",
"mypy",
"flake8",
"pytest",
"nuitka",
"zstandard>=0.25.0",
]
[project.scripts]
ntfsfind = 'ntfsfind.cli:main'