-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 903 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 903 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
[tool.poetry]
name = "taskiq-matrix"
version = "0.0.14"
description = ""
authors = ["Mo Balaa <balaa@ether.ai>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
taskiq = "^0.10.4"
matrix-nio = "^0.22.1"
fractal-matrix-client = ">=0.0.1"
async-lru = "^2.0.4"
filelock = "^3.13.1"
appdirs = "^1.4.4"
docker = { version = "^7.1.0", optional = true }
pytest = { version = "^7.4.2", optional = true }
pytest-asyncio = { version = "^0.21.1", optional = true }
pytest-cov = { version = "^4.1.0", optional = true }
pytest-mock = { version = "^3.11.1", optional = true }
ipython = { version = "^8.17.2", optional = true }
pytest-benchmark = { version = "^4.0.0", optional = true }
[tool.poetry.extras]
dev = ["pytest", "pytest-asyncio", "pytest-cov", "pytest-mock", "docker", "ipython", "pytest-benchmark"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"