mirror of
https://github.com/JJTech0130/pypush.git
synced 2025-01-22 11:18:29 +00:00
b1c30a98ff
Removes everything except APNs for now. Don't worry, it will be coming back!
37 lines
632 B
TOML
37 lines
632 B
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools_scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pypush"
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
"anyio",
|
|
"httpx",
|
|
"cryptography",
|
|
"typing-extensions",
|
|
"exceptiongroup",
|
|
'importlib_metadata; python_version>="3.9"',
|
|
]
|
|
|
|
[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"] |