pypush/pyproject.toml
JJTech b1c30a98ff
Rewrite: APNs from the ground up (#100)
Removes everything except APNs for now. Don't worry, it will be coming back!
2024-05-17 21:48:32 -04:00

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"]