-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
executable file
·88 lines (85 loc) · 2.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
"""
A framework for malware configuration parsers.
"""
from setuptools import setup, find_namespace_packages
setup(
name="mwcp",
author="DC3",
author_email="dc3.tsd@us.af.mil",
keywords="malware",
url="https://github.com/dod-cyber-crime-center/DC3-MWCP/",
packages=find_namespace_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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
python_requires=">=3.9",
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': [
'dc3 = mwcp.parsers',
]
},
install_requires=[
'anytree',
'appdirs',
'attrs>=20.3.0',
'bitarray',
'cattrs',
'click>=8.0.1',
'construct >=2.9.45, <2.11',
'defusedxml',
'future',
'isodate',
'jinja2', # For construct.html_hex()
'jsonschema_extractor>=1.0',
'packaging',
'pandas',
'pefile>=2019.4.18',
'pyasn1',
'pyasn1_modules',
'pyelftools',
'pyparsing',
'pytest>=6.0.0',
'pytest-datadir',
'pytest-xdist',
'pytest-mock',
'pytest-cov',
'pyyaml',
'requests',
'ruamel.yaml',
'six',
'tabulate[widechars]<1.0.0',
'stix2',
'yara-python',
# For the server and API
'flask',
'pygments',
# Dependencies for builtin parsers.
'pycdlib',
'pycryptodome',
'olefile',
],
extras_require={
'dragodis': ['dragodis>=0.2.0'],
'kordesii': ['kordesii>=2.0.0'],
'testing': [
'jsonschema',
'dragodis',
'rugosa',
],
}
)