forked from williballenthin/python-evtx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (50 loc) · 2.02 KB
/
setup.py
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
#!/usr/bin/env python
import setuptools
long_description = """python-evtx is a pure Python parser for \
Windows Event Log files (those with the file extension ".evtx"). \
The module provides programmatic access to the File and Chunk headers, \
record templates, and event entries. For example, you can use \
python-evtx to review the event logs of Windows 7 systems from \
a Mac or Linux workstation. The structure definitions and parsing \
strategies were heavily inspired by the work of Andreas Schuster \
and his Perl implementation "Parse-Evtx"."""
setuptools.setup(
name="python-evtx",
version="0.7.4",
description="Pure Python parser for recent Windows event log files (.evtx).",
long_description=long_description,
author="Willi Ballenthin",
author_email="[email protected]",
url="https://github.com/williballenthin/python-evtx",
license="Apache 2.0 License",
packages=setuptools.find_packages(),
install_requires=[
'six',
'hexdump==3.3',
'xmltodict==0.13.0', #added deps for evtx_dump_json.py script
# pin deps for python 2, see #67
'more_itertools==5.0.0',
'zipp==1.0.0',
'configparser==4.0.2',
'pyparsing==2.4.7',
],
extras_require={
# For running unit tests & coverage
"test": [
'pytest-cov==2.11.1',
'pytest==4.6.11',
'lxml==4.6.3',
]
},
scripts=['scripts/evtx_dump.py',
'scripts/evtx_dump_json.py'
'scripts/evtx_dump_chunk_slack.py',
'scripts/evtx_eid_record_numbers.py',
'scripts/evtx_extract_record.py',
'scripts/evtx_filter_records.py',
'scripts/evtx_info.py',
'scripts/evtx_record_structure.py',
'scripts/evtx_structure.py',
'scripts/evtx_templates.py',
],
)