-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
71 lines (65 loc) · 1.95 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
[tool.poetry]
name = "async-firebase"
version = "3.9.0"
description = "Async Firebase Client - a Python asyncio client to interact with Firebase Cloud Messaging in an easy way."
license = "MIT"
authors = [
"Oleksandr Omyshev <[email protected]>"
]
maintainers = [
"Healthjoy Developers <[email protected]>",
"Oleksandr Omyshev <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/healthjoy/async-firebase"
keywords = ["async", "asyncio", "firebase", "fcm", "python3", "push-notifications"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
google-auth = "~2.6.0"
httpx = { version = ">=0.23.0,<1.0.0", extras = ["http2"] }
[tool.poetry.dev-dependencies]
pre-commit = "~2.21"
cryptography = "~42.0.4"
Faker = "~15.3"
# tests
pytest = "~7.3"
pytest-asyncio = "~0.21"
pytest-benchmark = "~4.0.0"
pytest-cov = "~4.0.0"
pytest-freezegun = "~0.4.2"
pytest-httpx = "~0.22"
black = "^22.10.0"
mypy = "~0.991"
[tool.isort]
atomic = true
known_third_party = [
"cryptography", "faker", "google", "httpx", "pytest", "pytest_httpx"
]
sections = [
"FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"
]
known_first_party = ["async_firebase", "tests"]
no_lines_before = "STDLIB"
default_section = "FIRSTPARTY"
lines_after_imports = 2
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
ensure_newline_before_comments = true
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"