forked from axi0mX/ipwndfu
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
58 lines (51 loc) · 1.28 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
[tool.poetry]
name = "ipwndfu"
version = "2.0.0b5"
description = "The DFU exploitation toolkit for Apple devices"
readme = "README.md"
packages = [
{ include = "ipwndfu", from="src" },
{ include = "libusbfinder", from="src" }
]
authors = [
"axi0mX <axi0mXor@gmail.com>",
"Rick Mark <rickmark@outlook.com>",
"cynder <KritantaDevelopment@gmail.com>",
"adam <adamhamdi31@gmail.com>",
"Liam(Cryptic) <liamwqs@gmail.com>",
"h0m3us3r <h0m3us3r@t8012.dev>",
"MCMrARM <mcmrarm@gmail.com>"
]
[tool.isort]
profile = "black"
[tool.poetry.scripts]
ipwndfu = "ipwndfu.main:main"
[tool.poetry.dependencies]
python = "^3.8"
cryptography = "^37"
pyusb = "^1.2.1"
[tool.poetry.dev-dependencies]
pylint = "^2.14"
pytest = "^7.0.1"
mypy = "^0.971"
pre-commit = "^2.17.0"
pytest-cov = "^3.0.0"
pytest-mypy = "^0.9.1"
black = "^22"
flake8 = "^4"
flake8-broken-line = "^0.4.0"
flake8-bugbear = "^22.1.11"
flake8-comprehensions = "^3"
flake8-eradicate = "^1"
flake8-no-pep420 = "^2"
flake8-quotes = "^3.3.1"
flake8-simplify = "^0.19"
flake8-tidy-imports = "^4.6.0"
flake8-typing-imports = "^1.12.0"
flake8-use-fstring = "^1.3"
pep8-naming = "^0.13"
types-cryptography = "^3.3.15"
MonkeyType = "^21.5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"