forked from nnsnodnb/kalyke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.17 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
[tool.poetry]
name = "kalyke-apns"
version = "0.1.3"
description = "A library for interacting with APNs and VoIP using HTTP/2."
authors = ["Yuya Oka <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/nnsnodnb/kalyke"
keywords = ["apns", "voip", "apns provider api", "push notifications"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
packages = [
{ include = "kalyke" }
]
[tool.poetry.dependencies]
python = "^3.6"
cryptography = "~2.6.1"
pyjwt = "~1.7.1"
hyper = "~0.7.0"
[tool.poetry.dev-dependencies]
ipython = "^7.0.0"
pytest = "^6.1.2"
coverage = "^5.3"
coveralls = "^2.1.2"
pytest-cov = "^2.10.1"
black = "^20.8b1"
isort = "^5.6.4"
flake8 = "^3.8.4"
mypy = "^0.790"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
(
/(
\.git
|\.github
|\.mypy_cache
|\.pytest_cache
)/
)
'''
[tool.isort]
include_trailing_comma = true
line_length = 120
multi_line_output = 5
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"