forked from obfusk/apksigcopier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.97 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
from pathlib import Path
import setuptools
from apksigcopier import __version__
info = Path(__file__).with_name("README.md").read_text(encoding = "utf8")
setuptools.setup(
name = "apksigcopier",
url = "https://github.com/obfusk/apksigcopier",
description = "copy/extract/patch android apk signatures & compare apks",
long_description = info,
long_description_content_type = "text/markdown",
version = __version__,
author = "Felix C. Stegerman",
author_email = "[email protected]",
license = "GPLv3+",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Utilities",
],
keywords = "android apk reproducible signing compare",
py_modules = ["apksigcopier"],
entry_points = dict(console_scripts = ["apksigcopier = apksigcopier:main"]),
python_requires = ">=3.5",
install_requires = ["click>=6.0"],
)