forked from fox-it/dissect.target
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
125 lines (116 loc) · 3.85 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["setuptools>=65.5.0", "setuptools_scm[toml]>=6.4.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dissect.target"
description = "This module ties all other Dissect modules together, it provides a programming API and command line tools which allow easy access to various data sources inside disk images or file collections (a.k.a. targets)"
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 = [
"defusedxml",
"dissect.cstruct>=3.0.dev,<4.0.dev",
"dissect.eventlog>=3.0.dev,<4.0.dev",
"dissect.evidence>=3.0.dev,<4.0.dev",
"dissect.hypervisor>=3.0.dev,<4.0.dev",
"dissect.ntfs>=3.4.dev,<4.0.dev",
"dissect.regf>=3.3.dev,<4.0.dev",
"dissect.util>=3.0.dev,<4.0.dev",
"dissect.volume>=3.0.dev,<4.0.dev",
"flow.record~=3.14.0",
"structlog",
]
dynamic = ["version"]
[project.urls]
homepage = "https://dissect.tools"
documentation = "https://docs.dissect.tools/en/latest/projects/dissect.target"
repository = "https://github.com/fox-it/dissect.target"
[project.optional-dependencies]
full = [
"asn1crypto",
"dissect.btrfs>=1.0.dev,<2.0.dev",
"dissect.cim>=3.0.dev,<4.0.dev",
"dissect.clfs>=1.0.dev,<2.0.dev",
"dissect.esedb>=3.0.dev,<4.0.dev",
"dissect.etl>=3.0.dev,<4.0.dev",
"dissect.extfs>=3.0.dev,<4.0.dev",
"dissect.fat>=3.0.dev,<4.0.dev",
"dissect.ffs>=3.0.dev,<4.0.dev",
"dissect.jffs>=1.0.dev,<2.0.dev",
"dissect.shellitem>=3.0.dev,<4.0.dev",
"dissect.squashfs>=1.0.dev,<2.0.dev",
"dissect.sql>=3.0.dev,<4.0.dev",
"dissect.thumbcache>=1.0.dev,<2.0.dev",
"dissect.vmfs>=3.0.dev,<4.0.dev",
"dissect.xfs>=3.0.dev,<4.0.dev",
"ipython",
"fusepy",
"pycryptodome",
"ruamel.yaml",
"tomli; python_version<'3.11'",
# dissect.target's caching uses flow.record functionlity which depends on the
# zstandard module being available. However flow.record does not define
# zstandard as a dependency, nor does it allow zstandard to be installed
# through extras.
#
# Until such time that this dependency can be installed through
# flow.record, we define it as a dependency of dissect.target.
"zstandard",
]
yara = [
# Grab the dependencies for dissect.target
"dissect.target[full]",
"yara-python"
]
smb = [
# Grab the dependencies for dissect.target
"dissect.target[full]",
"impacket==0.10.0"
]
cb = [
# Grab the dependencies for dissect.target
"dissect.target[full]",
"carbon-black-cloud-sdk~=1.4.3"
]
mqtt = [
# Grab the dependencies for dissect.target
"dissect.target[full]",
"paho-mqtt==1.6.1",
]
[project.scripts]
target-build-pluginlist = "dissect.target.tools.build_pluginlist:main"
target-dump = "dissect.target.tools.dump.run:main"
target-dd = "dissect.target.tools.dd:main"
target-fs = "dissect.target.tools.fs:main"
target-info = "dissect.target.tools.info:main"
target-mount = "dissect.target.tools.mount:main"
target-query = "dissect.target.tools.query:main"
target-reg = "dissect.target.tools.reg:main"
target-shell = "dissect.target.tools.shell:main"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
known_first_party = ["dissect.target"]
known_third_party = ["dissect"]
[tool.setuptools]
license-files = ["LICENSE", "COPYRIGHT"]
[tool.setuptools.packages.find]
include = ["dissect.*"]
[tool.setuptools_scm]