-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (45 loc) · 976 Bytes
/
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
[tool.poetry]
name = "permasign"
version = "1.1.1"
description = "A small library to permanently sign any app on jailbroken iOS"
authors = ["TheRealKeto <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/TheRealKeto/Permasign"
include = [{ path = "permasign.1", format = "sdist" }]
[tool.poetry.scripts]
permasign = "permasign.cli:cli"
[tool.poetry.dependencies]
python = "^3.8"
docopt = "^0.6.2"
[tool.poetry.group.dev.dependencies]
mypy = "^1.10.1"
pyright = "^1.1.369"
ruff = "^0.5.0"
types-docopt = "^0.6.11.4"
[tool.poetry.build]
generate-setup-file = true
[tool.mypy]
python_version = "3.8"
[tool.pyright]
ignore = [
"dist",
"env",
"**/__pycache__"
]
pythonVersion = "3.8"
[tool.ruff.lint]
select = [
"E",
"F",
"W",
"N",
"Q",
"PTH"
]
[tool.ruff]
line-length = 70
output-format = "full"
target-version = "py38"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"