-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.53 KB
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 = "pybotx"
version = "0.75.1"
description = "A python library for interacting with eXpress BotX API"
authors = [
"Sidnev Nikolay <nsidnev@ccsteam.ru>",
"Maxim Gorbachev <mgorbachev@ccsteam.ru>",
"Alexander Samoylenko <alexandr.samojlenko@ccsteam.ru>",
"Arseniy Zhiltsov <arseniy.zhiltsov@ccsteam.ru>"
]
readme = "README.md"
repository = "https://github.com/ExpressApp/pybotx"
[tool.poetry.dependencies]
python = ">=3.9,<3.14"
aiofiles = ">=0.7.0,<=24.1.0"
httpx = "^0.28.0"
# The v1.0.3 cause some troubles with no-wait callbacks functionality.
# It will be fixed in the next versions.
# https://github.com/encode/httpcore/pull/880
httpcore = "1.0.9"
loguru = ">=0.6.0,<0.7.0"
pydantic = ">=1.6.0,<1.11.0"
aiocsv = ">=1.2.3,<=1.4.0"
pyjwt = ">=2.0.0,<3.0.0"
mypy-extensions = ">=0.2.0,<=1.1.0"
[tool.poetry.group.dev.dependencies]
add-trailing-comma = "3.1.0"
autoflake = "2.3.1"
black = "25.1.0"
isort = "6.0.1"
mypy = "1.16.0"
typing-extensions = ">=3.7.4,<5.0.0"
wemake-python-styleguide = "0.19.2"
bandit = "1.8.3" # https://github.com/PyCQA/bandit/issues/837
pytest = "8.3.5"
pytest-asyncio = "0.26.0"
pytest-cov = "6.1.1"
requests = "2.32.3"
respx = "0.22.0"
factory-boy = ">=3.3.3,<=4.0.0"
deepdiff = "^8.5.0,<=9.0.0"
fastapi = "0.115.12 "
starlette = "0.46.2" # TODO: Drop dependency after updating end-to-end test
uvicorn = "0.34.2"
[build-system]
requires = ["poetry>=1.2.0"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"