-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (40 loc) · 955 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='dfxlibs',
version='0.1.0',
packages=find_packages(),
url='https://github.com',
license='Apache 2.0',
author='Markus D',
author_email='[email protected]',
description='DFIR libs',
python_requires=">=3.8",
entry_points={
'console_scripts': [
'dfxlibs = dfxlibs.cli:main'
]
},
install_requires=[
'libewf-python',
'libqcow-python',
'libvmdk-python',
'libvhdi-python',
'pytsk3',
'python-registry',
'python-evtx',
'lxml',
"XlsxWriter",
"py-tlsh",
"python-magic",
"python-magic-bin;platform_system=='Windows'",
"libvshadow-python",
"libscca-python",
"libbde-python",
"libevtx-python",
"pycryptodome",
"signify",
"xmltodict",
"lnkparse3",
"python-dateutil"
]
)