forked from dod-cyber-crime-center/DC3-MWCP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·71 lines (68 loc) · 1.78 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
69
70
71
#!/usr/bin/env python
"""
A framework for malware configuration parsers.
"""
from setuptools import setup, find_packages
setup(
name="mwcp",
author="DC3",
author_email="[email protected]",
keywords="malware",
url="http://github.com/Defense-Cyber-Crime-Center/DC3-MWCP/",
packages=find_packages(),
include_package_data=True,
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
entry_points={
'console_scripts': [
'mwcp = mwcp.cli:main',
'poshdeob = mwcp.utils.poshdeob:main',
'mwcp_update_legacy_tests = mwcp.tools.update_legacy_tests:main',
],
'mwcp.parsers': [
'mwcp = mwcp.parsers',
]
},
install_requires=[
'anytree',
'appdirs',
'attrs>=20.3.0',
'bitarray',
'cattrs',
'click>=8.0.1',
'construct==2.9.45', # pin because parsers are very dependent on this.
'defusedxml',
'future',
'jinja2', # For construct.html_hex()
'jsonschema_extractor>=1.0',
'pandas',
'pefile>=2019.4.18',
'pyasn1',
'pyasn1_modules',
'pyelftools',
'pyparsing',
'pytest>=6.0.0',
'pytest-datadir',
'pytest-xdist',
'pyyaml',
'requests',
'ruamel.yaml',
'six',
'tabulate[widechars]<1.0.0',
# For the server and API
'flask',
'pygments',
],
extras_require={
'kordesii': ['kordesii>=2.0.0'],
'testing': [
'jsonschema',
],
}
)