-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
82 lines (71 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "aapns"
version = "23.7"
description = "Asynchronous Apple Push Notification Service Client"
authors = ["Jonas Obrist <[email protected]>", "Dima Tisnek <[email protected]>", "Muhammad Furqan Habibi <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/hennge/aapns"
documentation = "https://aapns.readthedocs.io"
readme = "README.md"
homepage = "https://github.com/HENNGE/aapns"
keywords = ["push-notification", "apple", "ios", "asyncio"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Communications",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
"Framework :: AsyncIO",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.dependencies]
python = "^3.8"
attrs = "^23"
h2 = "^3.2.0"
click = {version="^8", optional=true}
[tool.poetry.group.dev.dependencies]
pytest = "^7"
cryptography = "^41"
pytest-asyncio = "^0.21"
sphinx = "^7"
mypy = "^1.4"
black = "^23"
isort = "^5"
ruff = "0.0.275"
aiohttp = "^3.8.4"
[tool.poetry.extras]
cli = ["click"]
[tool.poetry.scripts]
aapns = {callable="aapns.cli:main", extras=["cli"]}
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
files = [
"src/",
"tests/",
]
[tool.ruff]
ignore = [
"E722", # Do not use bare `except`
"E501", # Line too long (104 > 88 characters)
]
select = [
"E", "F", "T201", # Don't commit print statements
]
[tool.ruff.per-file-ignores]
"tests/**" = ["T201"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = "tests"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"