-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (31 loc) · 997 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
# -*- encoding: utf8 -*-
#
# Copyright (c) 2021-2022 ESET spol. s r.o.
# Author: Vladislav Hrčka <[email protected]>
# See LICENSE file for redistribution.
from setuptools import setup
setup(
name='WslinkVMAnalyzer',
version='1.0.0',
py_modules=['WslinkVMAnalyzer'],
url='https://github.com/eset/wslink-vm-analyzer',
license='BSD',
author='Vladislav Hrčka',
author_email='[email protected]',
description='Tool to facilitate analysis of code obfuscated with Wslink\'s virtual machine',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
],
install_requires=[
'miasm @ git+https://github.com/cea-sec/miasm@9a36c6d7849335c83a9460fc558afb55ff0a2aa1',
],
keywords=[
"reverse engineering",
"Wslink",
"virtual machine",
"deobfuscation",
]
)