forked from healthjoy/async-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.63 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
[tool.poetry]
name = "async-firebase"
version = "3.2.0"
description = "Async Firebase Client - a Python asyncio client to interact with Firebase Cloud Messaging in an easy way."
license = "MIT"
authors = [
"Oleksandr Omyshev <oomyshev@healthjoy.com>"
]
maintainers = [
"Healthjoy Developers <developers@healthjoy.com>",
"Oleksandr Omyshev <oomyshev@healthjoy.com>"
]
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = ">=3.7,<3.12"
google-auth = "~2.6.0"
httpx = ">=0.23.0,<1.0.0"
[tool.poetry.dev-dependencies]
pre-commit = "~2.21"
cryptography = "~39.0.1"
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
force_grid_wrap = 0
include_trailing_comma = true
lines_after_imports = 2
multi_line_output = 3
use_parentheses = true
known_first_party = "async_firebase"
line_length = 120
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"