-
Notifications
You must be signed in to change notification settings - Fork 210
/
setup.py
36 lines (32 loc) · 1.19 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
import os.path
from setuptools import setup, find_packages
from andriller import __version__, __website__, __package_name__
req = os.path.join(os.path.dirname(__file__), "requirements.txt")
with open(req, "rt", encoding="utf-8") as f:
install_requires = [dep for dep in f.read().splitlines() if not dep.startswith("#")]
reme = os.path.join(os.path.dirname(__file__), "README.md")
with open(reme, "rt", encoding="utf-8") as f:
long_description = f.read()
setup(
name=__package_name__,
scripts=["andriller-gui.py"],
version=__version__,
description="Andriller CE | Android Forensic Tools",
author="Denis Sazonov",
author_email="[email protected]",
url=__website__,
packages=find_packages(exclude=["tests*"]),
license="MIT License",
keywords="andriller android forensic forensics adb dfir".split(),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=install_requires,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
zip_safe=True,
)