forked from dwisiswant0/apkleaks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.17 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
#!/usr/bin/env python3
from os import path
from setuptools import setup, find_packages
main_dir = path.abspath(path.dirname(__file__))
install_requires = open(path.join(main_dir, "requirements.txt"), "r").readlines()
version = open(path.join(main_dir, "VERSION"), "r").read().strip()
long_description = open(path.join(main_dir, "README.md"), "r", encoding="utf-8").read()
packages = find_packages(exclude=["*.tests", "*.tests.*", "test*", "tests"])
packages.append("config")
setup(
name="apkleaks",
version=version,
packages=packages,
url="https://github.com/dwisiswant0/apkleaks/",
license="Apache License 2.0",
author="dwisiswant0",
author_email="[email protected]",
description="Scanning APK file for URIs, endpoints & secrets.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=install_requires,
include_package_data=True,
entry_points={
"console_scripts": [
"apkleaks=apkleaks.cli:main",
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Topic :: Security",
"Topic :: Utilities",
]
)