forked from williballenthin/python-evtx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
80 lines (71 loc) · 2.25 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["Evtx*", "evtx_scripts*"]
exclude = ["tests", "tests.*"]
[project]
name = "python-evtx"
version = "0.8.1"
description = "Pure Python parser for Windows event log files (.evtx)."
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Willi Ballenthin", email = "willi.ballenthin@gmail.com" },
]
requires-python = ">=3.9"
dependencies = [
"hexdump>=3.3",
]
classifiers = [
"Development Status :: 5 - Production/Stable", # Assuming based on version 0.8.0
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Logging",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security",
]
[project.urls]
Homepage = "https://github.com/williballenthin/python-evtx"
Repository = "https://github.com/williballenthin/python-evtx"
Bug-Tracker = "https://github.com/williballenthin/python-evtx/issues"
[project.optional-dependencies]
test = [
"pytest-cov>=5.0.0",
"pytest>=8.2.2",
"lxml>=5.2.2",
"black>=24.4.2",
"isort>=5.13.2",
"ruff>=0.4.10",
]
[project.scripts]
evtx_dump = "evtx_scripts.evtx_dump:main"
evtx_dump_json = "evtx_scripts.evtx_dump_json:main"
evtx_dump_chunk_slack = "evtx_scripts.evtx_dump_chunk_slack:main"
evtx_eid_record_numbers = "evtx_scripts.evtx_eid_record_numbers:main"
evtx_extract_record = "evtx_scripts.evtx_extract_record:main"
evtx_filter_records = "evtx_scripts.evtx_filter_records:main"
evtx_info = "evtx_scripts.evtx_info:main"
evtx_record_structure = "evtx_scripts.evtx_record_structure:main"
evtx_structure = "evtx_scripts.evtx_structure:main"
evtx_templates = "evtx_scripts.evtx_templates:main"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
length_sort = true
[tool.ruff]
line-length = 120
[dependency-groups]
build = [
"build>=1.2.2.post1",
]