-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (35 loc) · 1.01 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
[tool.poetry]
name = "ohre"
version = "0.0.2a0"
description = "ohre is a analyze and reverse tool of HarmonyOS APP package."
authors = [
"koki <k0k1fish@outlook.com>",
"Penkace <penkaceunique@163.com>",
"LZ-QWQ ",
"Zhongy95 ",
]
homepage = "https://github.com/ohreteam"
readme = "README.md"
license = "AGPL-3.0"
documentation = "https://github.com/ohreteam/ohre"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Software Development",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.9"
"yara-python" = "^4.5.0"
pendulum = "^3.0.0"
leb128 = "^1.0.6"
pyyaml = "^6.0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"