forked from PUNCH-Cyber/stoq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.61 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
import os
import re
import unittest
from setuptools import setup
def version():
version_pattern = r"__version__\W*=\W*'([^']+)'"
src = os.path.join(os.path.dirname(__file__), 'stoq/__init__.py')
with open(src, "r") as f:
v, = re.findall(version_pattern, f.read())
return v
setup(
name="stoq",
version=version(),
author="Marcus LaFerrera",
author_email="[email protected]",
description="A framework for simplifying analysis.",
license="Apache License 2.0",
url="https://github.com/PUNCH-Cyber/stoq",
include_package_data=True,
packages=['stoq'],
install_requires=['beautifulsoup4',
'requests',
'requests[security]',
'python-magic',
'ssdeep',
'yara-python',
'python-json-logger'],
keywords='malware-analysis, malware-analyzer, malware-detection, framework, automation',
python_requires='>=3.4',
test_suite='stoq.tests',
entry_points= {
'console_scripts': [ 'stoq=stoq.cli:main']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Information Technology',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)