-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·55 lines (48 loc) · 1.58 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
from setuptools import find_namespace_packages, setup
setup(
name='ThreatHunter',
version='1.1.4',
author="Wambua aka Bullet Angel",
packages=find_namespace_packages(include=['*']),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
"ThreatHunter=ThreatHunter:main",
"Threathunter=ThreatHunter:main",
"threathunter=ThreatHunter:main",
"THREATHUNTER=ThreatHunter:main"
],
},
python_requires='>=3',
install_requires=[
'argparse',
'yara-python',
'capstone',
'r2pipe',
'pyelftools',
'pefile',
'progressbar',
'pymem'
],
include_package_data=True,
package_data={
'ThreatHunter': ['rules/**/*', 'warn/**/*']
},
license="MIT",
keywords=['MalwareDART', "ThreatHunter", "malware", "malware-analysis", "malware-scan", "malware-detection", "trojan", "virus"],
classifiers=[
"Environment :: Console",
"Operating System :: OS Independent",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)