-
Notifications
You must be signed in to change notification settings - Fork 398
/
pyproject.toml
61 lines (52 loc) · 1.29 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pypush"
dynamic = ["version"]
authors = [
{ name = "JJTech", email = "[email protected]" },
]
description = "Interact with Apple Private API"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: Other/Proprietary License",
]
license = {text = "Server Side Public License (SSPL)"}
keywords = ["apple", "api", "reverse engineering", "imessage", "apns"]
dependencies = [
"anyio",
"httpx[http2]",
"cryptography",
"typing-extensions",
"exceptiongroup",
'importlib_metadata; python_version>="3.9"',
]
[project.urls]
Homepage = "https://github.com/JJTech0130/pypush"
Issues = "https://github.com/JJTech0130/pypush/issues"
[project.scripts]
pypush = "pypush.cli:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
]
cli = [
"frida",
"rich",
"typer"
]
[tool.setuptools_scm]
version_file = "pypush/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "-q"]
testpaths = ["tests"]
[tool.ruff.lint]
select = ["E", "F", "B", "SIM", "I"]
ignore = ["E501", "B010"]