-
Notifications
You must be signed in to change notification settings - Fork 64
/
pyproject.toml
84 lines (76 loc) · 2.19 KB
/
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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools>=65.5.0", "setuptools_scm[toml]>=6.4.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dissect"
description = "Dissect is a digital forensics & incident response framework and toolset that allows you to quickly access and analyse forensic artefacts from various disk and file formats, developed by Fox-IT (part of NCC Group)"
readme = "README.md"
requires-python = "~=3.9"
license.text = "Affero General Public License v3"
authors = [
{name = "Dissect Team", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: Log Analysis",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: Utilities",
]
dependencies = [
"dissect.archive==1.2",
"dissect.btrfs==1.5",
"dissect.cim==3.10",
"dissect.clfs==1.9",
"dissect.cstruct==4.1",
"dissect.esedb==3.14",
"dissect.etl==3.10",
"dissect.eventlog==3.9",
"dissect.evidence==3.10",
"dissect.executable==1.7",
"dissect.extfs==3.11",
"dissect.fat==3.10",
"dissect.ffs==3.9",
"dissect.hypervisor==3.15",
"dissect.jffs==1.3",
"dissect.ntfs==3.12",
"dissect.ole==3.9",
"dissect.regf==3.11",
"dissect.shellitem==3.10",
"dissect.sql==3.10",
"dissect.squashfs==1.7",
"dissect.target[full]==3.19",
"dissect.thumbcache==1.9",
"dissect.util==3.18",
"dissect.vmfs==3.9",
"dissect.volume==3.12",
"dissect.xfs==3.10",
]
dynamic = ["version"]
[project.urls]
homepage = "https://dissect.tools"
documentation = "https://docs.dissect.tools"
repository = "https://github.com/fox-it/dissect"
[project.optional-dependencies]
lz4 = [
"dissect.util[lz4]",
]
lzo = [
"dissect.util[lzo]",
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
known_first_party = ["dissect"]
[tool.setuptools]
license-files = ["LICENSE", "COPYRIGHT"]
[tool.setuptools.packages.find]
include = ["dissect.*"]
[tool.setuptools_scm]