-
Notifications
You must be signed in to change notification settings - Fork 445
/
setup.py
48 lines (45 loc) · 1.42 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
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
from pathlib import Path
import platform
USER_HOME_DIR = str(Path.home()) + os.sep
with open("README.md", encoding='utf8') as readme:
long_description = readme.read()
setup(
name="malwoverview",
version="6.0.0",
author="Alexandre Borges",
author_email="[email protected]",
license="GNU GPL v3.0",
url="https://github.com/alexandreborges/malwoverview",
description=("Malwoverview is a first response tool for threat hunting."),
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
],
install_requires=[
"pefile",
"colorama",
"python-magic; platform_system == 'Linux' or platform_system == 'Darwin'",
"simplejson",
"requests",
"validators",
"geocoder",
"polyswarm-api",
"pathlib",
"configparser",
"python-magic-bin; platform_system == 'Windows'"
],
entry_points = {
"console_scripts": [
"malwoverview = malwoverview.malwoverview:main",
]
},
package_data={'': ['README.md, LICENSE, .malwapi.conf']},
data_files=[(USER_HOME_DIR, ['.malwapi.conf'])],
)