forked from androguard/androguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.08 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "androguard"
description = "Androguard is a full python tool to play with Android files."
authors = ["desnos <[email protected]>"]
version = "4.1.2"
license = "Apache Licence, Version 2.0"
readme = "README.md"
homepage = "https://github.com/androguard/androguard"
packages = [{ include = "androguard" }]
[tool.poetry.dependencies]
python = "^3.9"
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"
matplotlib = "*"
networkx = "*"
pyyaml = "*"
cryptography = "*"
[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"
[tool.black]
line-length = 79
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 79