forked from log2timeline/plaso
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
52 lines (48 loc) · 1.32 KB
/
setup.cfg
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
[metadata]
name = plaso
version = 20241012
description = Plaso (log2timeline) - Super timeline all the things
long_description = Plaso (log2timeline) is a framework to create super timelines. Its purpose is to extract timestamps from various files found on typical computer systems and aggregate them.
long_description_content_type = text/plain
url = https://github.com/log2timeline/plaso
maintainer = Log2Timeline maintainers
maintainer_email = log2timeline-maintainers@googlegroups.com
license = Apache License, Version 2.0
license_files =
ACKNOWLEDGEMENTS
AUTHORS
LICENSE
README
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
[options]
install_requires = file:requirements.txt
package_dir =
plaso = plaso
packages = find:
python_requires = >=3.8
[options.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
[options.packages.find]
exclude =
docs
tests
tests.*
utils
where = .
[options.entry_points]
console_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