forked from ev-flow/quark-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.14 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.14 KB
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
import setuptools
from quark import __version__
with open("README.md") as fh:
long_description = fh.read()
setuptools.setup(
name="quark-engine", # Replace with your own username
version=__version__,
author="JunWei Song, KunYu Chen",
author_email="sungboss2004@gmail.com",
description="An Obfuscation-Neglect Android Malware Scoring System",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/quark-engine/quark-engine",
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["quark=quark.cli:entry_point",
"freshquark=quark.freshquark:entry_point",
]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Security",
],
python_requires=">=3.7",
install_requires=[
"prettytable",
"androguard==3.4.0a1",
"tqdm",
"colorama",
"click==7.1.2",
"graphviz",
],
)