-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.37 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
[tool.poetry]
name = "extraire"
version = "0.1.4.post1"
description = "Dumps onboard SHSH blobs with a valid generator for jailbroken iOS devices"
authors = ["beerpiss <lacvtg.a1.2023@gmail.com>"]
license = "0BSD"
readme = "README.md"
keywords = ["ios", "jailbreak", "iboot", "img4", "shsh", "blob"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities"
]
packages = [
{ include = "extraire" }
]
[tool.black]
target-version = ['py36', 'py37']
include = '\.spec?$'
extend-exclude = '''
/(
extraire\/.+\.min\.py
| .+\.min\.py
| build
| dist
| env
)/
'''
[tool.isort]
profile = "black"
[tool.poetry.scripts]
extraire = "extraire.__main__:main"
[tool.poetry.dependencies]
python = ">=3.6.2,<3.11"
pyasn1 = "^0.4.8"
fabric = "^2.7.0"
rich = "^12.0.1"
[tool.poetry.dev-dependencies]
pyinstaller = "^4.10"
black = "^22.1.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
pre-commit = "^2.17.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/beerpiss/extraire/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"