-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 793 Bytes
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
[tool.poetry]
name = "WhatsappApiClient"
version = "0.15.1"
description = "Whatsapp API client"
authors = ["a5r0n <a5r0n@users.noreply.github.com>"]
packages = [{ include = "whatsapp" }]
[tool.poetry.dependencies]
python = "^3.8"
driconfig = "^0.2.0"
aiohttp = "^3.9.1"
loguru = "^0.7.0"
aioretry = "^5.0.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.3"
black = {version = "^21.12b0", allow-prereleases = true}
pytest-asyncio = "^0.18.3"
pytest-dotenv = "^0.5.2"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.15.1"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"whatsapp/__init__.py:__version__"
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"