-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
71 lines (62 loc) · 1.77 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
[build-system]
requires = ["setuptools>=65.5.0", "setuptools_scm[toml]>=6.4.0"]
build-backend = "setuptools.build_meta"
[project]
name = "acquire"
description = "A tool to quickly gather forensic artifacts from disk images or a live system into a lightweight container"
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.cstruct>=4,<5",
"dissect.target>=3.7,<4",
]
dynamic = ["version"]
[project.urls]
homepage = "https://dissect.tools"
documentation = "https://docs.dissect.tools/en/latest/projects/acquire"
repository = "https://github.com/fox-it/acquire"
[project.optional-dependencies]
full = [
"minio",
"pycryptodome",
"requests",
"rich",
"dissect.target[full]>=3.7,<4",
"requests_toolbelt",
]
dev = [
"acquire[full]",
"dissect.cstruct>=4.0.dev,<5.0.dev",
"dissect.target[dev]>=3.7.dev,<4.0.dev",
]
[project.scripts]
acquire = "acquire.acquire:main"
acquire-decrypt = "acquire.tools.decrypter:main"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
known_first_party = ["acquire"]
[tool.setuptools]
license-files = ["LICENSE", "COPYRIGHT"]
[tool.setuptools.packages.find]
include = ["acquire", "acquire.*"]
[tool.setuptools_scm]
write_to = "acquire/version.py"