forked from dod-cyber-crime-center/kordesii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (59 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""This is the setup file for the kordesii project."""
import os
import sys
from setuptools import setup, find_packages
version_tuple = (sys.version_info[0], sys.version_info[1])
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname), 'r') as fo:
return fo.read()
setup(
name='kordesii',
version='2.0.0',
author='DC3',
description='A framework for decoding encoded strings and files in malware via IDA Pro IDAPython scripting.',
url='https://github.com/Defense-Cyber-Crime-Center/kordesii',
long_description=read('README.md'),
keywords=['malware', 'ida', 'idapro'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': [
'kordesii = kordesii.cli:main',
],
'kordesii.decoders': [
'kordesii = kordesii.decoders',
]
},
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'click',
'dill',
'numpy',
'pyelftools',
'pefile>=2019.4.18',
'pycryptodome',
'requests',
'Pyro4',
'pyyaml',
'tabulate',
'yara-python',
'ruamel.yaml',
'setuptools',
'six',
# For the server and API
'flask~=1.1.0',
'pygments~=2.2.0',
# Testing
'pytest',
'pytest-console-scripts',
'tox',
]
)