forked from dod-cyber-crime-center/DC3-MWCP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·63 lines (57 loc) · 1.67 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
#!/usr/bin/env python
"""
DC3-MWCP: A framework malware configuration parsers. The main focus is standardizing malware parsers and their output.
"""
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname), 'r') as fo:
return fo.read()
setup(
name="mwcp",
version="1.3.0",
author="DC3",
author_email="[email protected]",
description=__doc__,
long_description=read("README.md"),
keywords="malware",
url="http://github.com/Defense-Cyber-Crime-Center/DC3-MWCP/",
packages=find_packages(),
include_package_data=True,
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: MIT License",'
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
entry_points={
'console_scripts': [
'mwcp-tool = mwcp.tools.tool:main',
'mwcp-client = mwcp.tools.client:main',
'mwcp-server = mwcp.tools.server:main',
'mwcp-test = mwcp.tools.test:main'
],
'mwcp.parsers': [
'bar = mwcp.parsers.bar_malwareconfigparser:Bar',
'foo = mwcp.parsers.foo_malwareconfigparser:Foo'
]
},
install_requires=[
'bottle',
'construct==2.8.12', # pin version, since we patch this library
'future',
'jinja2', # For construct.html_hex()
'pefile',
'requests',
'six',
# Testing
'pytest',
'pytest-console-scripts',
'tox',
],
extras_require={
'kordesii': ['kordesii'],
}
)