forked from 5ec1cff/payload-dumper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 996 Bytes
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
[tool.poetry]
name = "payload_dumper"
version = "0.4.0"
description = "Dump partitions from Android's payload.bin"
authors = ["5ec1cff"]
readme = "README.md"
repository = "https://github.com/5ec1cff/payload-dumper"
homepage = "https://github.com/5ec1cff/payload-dumper"
[tool.poetry.scripts]
payload_dumper = "payload_dumper:main"
[tool.poetry.dependencies]
python = ">=3.9" # protobuf runtime requires this
httpx = ">=0.23.1" # https://github.com/encode/httpx/pull/2309
protobuf = "6.32.0"
bsdiff4 = ">=1.2.3" # This version officially supports Python 3.12
enlighten = ">=1.12.0" # This version officially supports Python 3.12
#pywin32 = {version = "^311", platform = "win32"} # not required for now
zstd = "^1.5.7.2"
brotli = "^1.1.0"
[tool.pytest.ini_options]
pythonpath = "src"
[tool.isort]
atomic = true
profile = "black"
line_length = 89
skip_gitignore = true
known_first_party = ["payload_dumper"]
[build-system]
requires = ["poetry-core"]
build-backend= "poetry.core.masonry.api"