-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
42 lines (38 loc) · 1.05 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
[tool.poetry]
name = "criptam"
version = "1.0b3"
description = "iOS firmware key decrypter"
authors = ["m1stadev <[email protected]>"]
maintainers = ["m1stadev <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/m1stadev/Criptam"
keywords = ["ios", "jailbreak", "iboot", "img4"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: POSIX",
"Operating System :: Unix",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities"
]
packages = [
{ include = "criptam" }
]
[tool.poetry.scripts]
criptam = "criptam.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
ipwndfu = "~2.0.0b5"
kimg4 = "^0.1.1"
mwclient = "^0.10.1"
pyusb = "^1.2.1"
remotezip = "^0.9.3"
requests = "^2.27.1"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/m1stadev/Criptam/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"