-
Notifications
You must be signed in to change notification settings - Fork 413
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (104 loc) · 3.11 KB
/
pyproject.toml
File metadata and controls
109 lines (104 loc) · 3.11 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
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plaso"
version = "20260427"
description = "Plaso (log2timeline) - Super timeline all the things"
maintainers = [
{ name = "Log2Timeline maintainers", email = "log2timeline-maintainers@googlegroups.com" },
]
license = "Apache-2.0"
license-files = ["ACKNOWLEDGEMENTS", "AUTHORS", "LICENSE"]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
requires-python = ">=3.10"
dependencies = [
"PyYAML >= 3.10",
"XlsxWriter >= 0.9.3",
"acstore >= 20240407",
"artifacts >= 20220219",
"bencode.py",
"certifi >= 2016.9.26",
"defusedxml >= 0.5.0",
"dfdatetime >= 20251018",
"dfvfs >= 20260411",
"dfwinreg >= 20240229",
"dtfabric >= 20230518",
"flor >= 1.1.3",
"libbde-python >= 20220121",
"libcaes-python >= 20240114",
"libcreg-python >= 20200725",
"libesedb-python >= 20220806",
"libevt-python >= 20191104",
"libevtx-python >= 20220724",
"libewf-python >= 20131210",
"libfcrypto-python >= 20240114",
"libfsapfs-python >= 20220709",
"libfsext-python >= 20220829",
"libfsfat-python >= 20220925",
"libfshfs-python >= 20220831",
"libfsntfs-python >= 20211229",
"libfsxfs-python >= 20220829",
"libfvde-python >= 20220121",
"libfwnt-python >= 20210717",
"libfwsi-python >= 20240225",
"liblnk-python >= 20230716",
"libluksde-python >= 20220121",
"libmodi-python >= 20210405",
"libmsiecf-python >= 20150314",
"libolecf-python >= 20151223",
"libphdi-python >= 20220228",
"libqcow-python >= 20201213",
"libregf-python >= 20201002",
"libscca-python >= 20190605",
"libsigscan-python >= 20230109",
"libsmdev-python >= 20140529",
"libsmraw-python >= 20140612",
"libvhdi-python >= 20201014",
"libvmdk-python >= 20140421",
"libvsapm-python >= 20230506",
"libvsgpt-python >= 20211115",
"libvshadow-python >= 20160109",
"libvslvm-python >= 20160109",
"lz4 >= 0.10.0",
"opensearch-py",
"pefile >= 2023.2.7",
"psutil >= 5.4.3",
"pyparsing >= 3.0.0",
"python-dateutil >= 1.5",
"pytsk3 >= 20210419",
"pytz",
"pyzmq >= 2.1.11",
"redis >= 3.4",
"requests >= 2.18.0",
"xattr >= 0.7.2 ; platform_system != \"Windows\"",
"yara-python >= 3.4.0",
"zstd >= 1.3.0.2",
]
[project.scripts]
image_export = "plaso.scripts.image_export:Main"
log2timeline = "plaso.scripts.log2timeline:Main"
pinfo = "plaso.scripts.pinfo:Main"
psort = "plaso.scripts.psort:Main"
psteal = "plaso.scripts.psteal:Main"
[project.urls]
Documentation = "https://plaso.readthedocs.io/en/latest"
Homepage = "https://github.com/log2timeline/plaso"
Repository = "https://github.com/log2timeline/plaso"
[tool.setuptools]
package-dir = {"plaso" = "plaso"}
[tool.setuptools.package-data]
plaso = [
"data/*.*",
"data/formatters/*.yaml",
"parsers/*.yaml",
"parsers/esedb_plugins/*.yaml",
"parsers/olecf_plugins/*.yaml",
"parsers/plist_plugins/*.yaml",
"parsers/winreg_plugins/*.yaml",
"preprocessors/*.yaml",
]