-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
49 lines (42 loc) · 1.53 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
"""Install packages as defined in this file into the Python environment."""
from setuptools import setup, find_packages
from pathlib import Path
# The version of this tool is based on the following steps:
# https://packaging.python.org/guides/single-sourcing-package-version/
VERSION = {}
with open("./__init__.py") as fp:
# pylint: disable=W0122
exec(fp.read(), VERSION)
def get_file(location):
with open(location, "r") as readf:
contents = readf.read()
return contents.strip()
setup(
name="aparoid",
author="Stefan2200",
author_email="[email protected]",
url="https://github.com/stefan2200/aparoid",
description="Framework for Android application security analysis",
version=VERSION.get("__version__", "0.0.0"),
packages=find_packages(where=".", exclude=["tests"]),
long_description=get_file('README.md'),
long_description_content_type='text/markdown',
install_requires=get_file('requirements.txt').split("\n"),
include_package_data=True,
package_data={"aparoid": ["*"]},
entry_points={
"console_scripts": [
"aparoid=aparoid.main:start",
]
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Security",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Disassemblers",
"Topic :: Utilities",
],
)