-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
155 lines (146 loc) · 4.76 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
[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>=4,<5",
"dissect.eventlog>=3,<4",
"dissect.evidence>=3,<4",
"dissect.hypervisor>=3,<4",
"dissect.ntfs>=3.4,<4",
"dissect.regf>=3.3,<4",
"dissect.util>=3,<4",
"dissect.volume>=2,<4",
"flow.record~=3.17.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.archive>=1,<2",
"dissect.btrfs>=1,<2",
"dissect.cim>=3,<4",
"dissect.clfs>=1,<2",
"dissect.esedb>=3,<4",
"dissect.etl>=3,<4",
"dissect.extfs>=3,<4",
"dissect.fat>=3,<4",
"dissect.ffs>=3,<4",
"dissect.jffs>=1,<2",
"dissect.ole>=3,<4",
"dissect.shellitem>=3,<4",
"dissect.squashfs>=1,<2",
"dissect.sql>=3,<4",
"dissect.thumbcache>=1,<2",
"dissect.vmfs>=3,<4",
"dissect.xfs>=3,<4",
"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",
]
dev = [
"dissect.target[full,mqtt,yara]",
"dissect.archive[dev]>=1.0.dev,<2.0.dev",
"dissect.btrfs[dev]>=1.0.dev,<2.0.dev",
"dissect.cim[dev]>=3.0.dev,<4.0.dev",
"dissect.clfs[dev]>=1.0.dev,<2.0.dev",
"dissect.cstruct>=4.0.dev,<5.0.dev",
"dissect.esedb[dev]>=3.0.dev,<4.0.dev",
"dissect.etl[dev]>=3.0.dev,<4.0.dev",
"dissect.eventlog[dev]>=3.0.dev,<4.0.dev",
"dissect.evidence[dev]>=3.0.dev,<4.0.dev",
"dissect.extfs[dev]>=3.0.dev,<4.0.dev",
"dissect.fat[dev]>=3.0.dev,<4.0.dev",
"dissect.ffs[dev]>=3.0.dev,<4.0.dev",
"dissect.hypervisor[dev]>=3.0.dev,<4.0.dev",
"dissect.jffs[dev]>=1.0.dev,<2.0.dev",
"dissect.ntfs[dev]>=3.4.dev,<4.0.dev",
"dissect.regf[dev]>=3.3.dev,<4.0.dev",
"dissect.shellitem[dev]>=3.0.dev,<4.0.dev",
"dissect.sql[dev]>=3.0.dev,<4.0.dev",
"dissect.squashfs[dev]>=1.0.dev,<2.0.dev",
"dissect.thumbcache[dev]>=1.0.dev,<2.0.dev",
"dissect.util>=3.0.dev,<4.0.dev",
"dissect.vmfs[dev]>=3.0.dev,<4.0.dev",
"dissect.volume[dev]>=3.0.dev,<4.0.dev",
"dissect.xfs[dev]>=3.0.dev,<4.0.dev",
]
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"
target-yara = "dissect.target.tools.yara: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]