-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 1.08 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyapktool"
version = "0.2.1"
license = {file = "LICENSE.txt"}
readme = "README.md"
authors = [{name = "agentzex", email = "cypy919@gmail.com"}]
description = "Unpack/Pack Android's apk and sign it. No prerequisites required."
keywords = ["pyapktool", "apktool", "android apk", "apk decompiler", "apk decompile",
"android app decompiler", "android app unpacker", "android app packer",
"android apk unpacker", "android apk packer", "android app sign",
"android apk sign", "android apk debug keys"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Utilities"
]
requires-python = ">=3.6"
dependencies = [
"requests>=2.2.0",
]
[project.urls]
Source = "https://github.com/agentzex/pyapktool/"
[project.scripts]
pyapktool = "pyapktool.pyapktool:main"