forked from androguard/androguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 958 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "androguard"
description = "Androguard is a full python tool to play with Android files."
authors = ["desnos <desnos@t0t0.fr>"]
version = "4.0.0"
license = "Apache Licence, Version 2.0"
homepage = "https://github.com/androguard/androguard"
repository = "https://github.com/androguard/androguard"
packages = [
{ include = "androguard" },
]
[tool.poetry.dependencies]
python = "^3.6"
pygments = ">=2.3.1"
lxml = ">=4.3.0"
colorama = ">=0.4.1"
asn1crypto = ">=0.24.0"
click = ">=7.0"
pydot = ">=1.4.1"
ipython = ">=5.0.0"
mutf8 = "*"
dataset = "*"
frida = "*"
loguru = "*"
apkInspector = ">=1.1.7"
[tool.setuptools.package_data]
"androguard.core.api_specific_resources" = ["aosp_permissions/*.json", "api_permission_mappings/*.json"]
"androguard.core.resources" = ["public.xml"]
[tool.poetry.scripts]
androguard = "androguard.cli.cli:entry_point"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"