-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
65 lines (54 loc) · 1.44 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
61
62
63
64
65
[project]
name = "pyimg4"
dynamic = ["version"]
description = "A Python library/CLI tool for parsing Apple's Image4 format."
authors = [{ name = "m1stadev", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["ios", "jailbreak", "iboot", "img4", "image4"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
"asn1>=2.7.0",
"click>=8.1.7",
"pycryptodome>=3.18.0",
"pylzss==0.3.4",
"lzfse>=0.4.2; sys_platform != 'darwin'",
"apple-compress>=0.2.3; sys_platform == 'darwin'",
]
[project.urls]
Repository = "https://github.com/m1stadev/PyIMG4"
"Bug Tracker" = "https://github.com/m1stadev/PyIMG4/issues"
[project.scripts]
pyimg4 = "pyimg4.__main__:cli"
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
"pytest>=8.1.1",
"remotezip>=0.12.3",
]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.poetry-dynamic-versioning]
vcs = "git"
style = "semver"
dirty = true
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
extend-select = ["I"]
ignore = ["E722"]
[tool.ruff.format]
quote-style = "single"
[tool.pytest.ini_options]
testpaths = ["tests"]