-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (68 loc) · 2.01 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
[tool.poetry]
name = "async-customerio"
version = "1.4.1"
description = "Async CustomerIO Client - a Python client to interact with CustomerIO in an async fashion."
license = "MIT"
authors = [
"Aleksandr Omyshev <[email protected]>"
]
maintainers = [
"Healthjoy Developers <[email protected]>",
"Aleksandr Omyshev <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/healthjoy/async-customerio"
keywords = [
"async", "asyncio", "customerio", "messaing", "python3", "data-driven-emails", "push notifications",
"in-app messages", "SMS",
]
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",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=3.7.15,<3.13"
httpx = "<1.0.0"
typing_extensions = { version = "^4.7.1", python = "^3.7" }
[tool.poetry.dev-dependencies]
pre-commit = "~2.21"
faker = "~8.14"
# 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 = [
"faker", "httpx", "pytest", "pytest_httpx", "typing_extensions"
]
sections = [
"FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"
]
known_first_party = ["async_customerio", "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"