-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
40 lines (38 loc) · 1.16 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
# -*- encoding: utf8 -*-
#
# Copyright (c) 2020 ESET spol. s r.o.
# Author: Vladislav Hrčka <[email protected]>
# See LICENSE file for redistribution.
from setuptools import setup
setup(
name='stadeo',
version='0.0.1',
packages=['stadeo', 'stadeo.cff', 'stadeo.utils', 'stadeo.string'],
url='https://github.com/eset/stadeo',
license='BSD',
author='Vladislav Hrčka',
author_email='[email protected]',
description='Stadeo is a set of tools for control-flow-flattening and string deobfuscation',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
],
install_requires=[
'z3-solver==4.8.7.0',
'sortedcontainers',
'rpyc',
'future',
'miasm @ git+https://github.com/cea-sec/miasm@a01c29cd82f5a717e8dee622002e1ca3e189f420',
],
keywords=[
"reverse engineering",
"symbolic execution",
"deobfuscation",
"control flow flattening",
"string obfuscation",
"Stantinko",
"Emotet",
],
)