-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (52 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (52 loc) · 1.52 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "deleted-file-investigation-assistant"
version = "0.1.0"
description = "Signature-based file carving over disk-image exports."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [{ name = "Security Research Collection" }]
keywords = ["security", "template"]
dependencies = [
"secintel-core>=0.1.0",
"typer>=0.12",
"rich>=13.0",
]
[project.optional-dependencies]
dev = [
"secintel-core[dev]>=0.1.0",
"pytest>=8.0",
"pytest-cov>=4.1",
"ruff>=0.4",
"mypy>=1.8",
"jsonschema>=4.21",
]
[project.scripts]
deleted-file-investigation-assistant = "deleted_file_investigation_assistant.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/deleted_file_investigation_assistant"]
[tool.hatch.build.targets.sdist]
only-include = ["src/deleted_file_investigation_assistant", "sample_data", "scripts", "docs", "report", "README.md", "LICENSE"]
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "S", "C4"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101"]
"src/deleted_file_investigation_assistant/cli.py" = ["B008"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
packages = ["deleted_file_investigation_assistant"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["deleted_file_investigation_assistant"]