-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
60 lines (50 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "pyimg4"
version = "0.0.0"
description = "A Python library/CLI tool for parsing Apple's Image4 format."
authors = ["m1stadev <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/m1stadev/PyIMG4"
keywords = ["ios", "jailbreak", "iboot", "img4", "image4"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities"
]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
dirty = true
[tool.poetry.scripts]
pyimg4 = "pyimg4.__main__:cli"
[tool.poetry.dependencies]
python = "^3.9"
asn1 = "^2.7.0"
click = "^8.1.7"
pycryptodome = "^3.18.0"
pylzss = "0.3.4"
lzfse = { version = "^0.4.2", markers = "sys_platform != 'darwin'" }
apple-compress = { version = "^0.2.3", markers = "sys_platform == 'darwin'" }
pytest = { version = "^8.1.1", optional = true }
remotezip = { version = "^0.12.3", optional = true }
[tool.poetry.extras]
test = ["pytest", "remotezip"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
extend-select = ["I"]
ignore = ["E722"]
[tool.ruff.format]
quote-style = "single"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/m1stadev/PyIMG4/issues"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"