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
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-evtx"
version = "0.8.0"
description = "Pure Python parser for Windows event log files (.evtx)."
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "Willi Ballenthin", email = "willi.ballenthin@gmail.com" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable", # Assuming based on version 0.8.0
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"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 = "scripts.evtx_dump:main"
evtx_dump_json = "scripts.evtx_dump_json:main"
evtx_dump_chunk_slack = "scripts.evtx_dump_chunk_slack:main"
evtx_eid_record_numbers = "scripts.evtx_eid_record_numbers:main"
evtx_extract_record = "scripts.evtx_extract_record:main"
evtx_filter_records = "scripts.evtx_filter_records:main"
evtx_info = "scripts.evtx_info:main"
evtx_record_structure = "scripts.evtx_record_structure:main"
evtx_structure = "scripts.evtx_structure:main"
evtx_templates = "scripts.evtx_templates:main"
[tool.setuptools]
packages = ["Evtx"]
[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",
]
|