This repository was archived by the owner on May 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 2.07 KB
/
setup.py
File metadata and controls
49 lines (46 loc) · 2.07 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
37
38
39
40
41
42
43
44
45
46
47
48
49
from pathlib import Path
import setuptools
# from apksigtool import __version__
__version__ = "0.1.0"
info = Path(__file__).with_name("README.md").read_text(encoding = "utf8")
setuptools.setup(
name = "apksigtool",
url = "https://github.com/obfusk/apksigtool",
description = "parse/verify/clean android apk signing blocks & apks",
long_description = info,
long_description_content_type = "text/markdown",
version = __version__,
author = "FC Stegerman",
author_email = "flx@obfusk.net",
license = "AGPLv3+",
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Utilities",
],
keywords = "android apk signing",
entry_points = dict(console_scripts = ["apksigtool = apksigtool:main"]),
packages = ["apksigtool"],
package_data = dict(apksigtool = ["py.typed"]),
python_requires = ">=3.8",
install_requires = ["apksigcopier", "asn1crypto", "click>=6.0", "cryptography",
"pyasn1", "pyasn1-modules", "simplejson"],
)