forked from hintjen/fractal-matrix-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 885 Bytes
/
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
[tool.poetry]
name = "fractal-matrix-client"
version = "0.0.5"
description = ""
authors = ["Mo Balaa <[email protected]>"]
readme = "README.md"
packages = [
{include = "fractal"} ]
[tool.poetry.dependencies]
python = "^3.10"
appdirs = "^1.4.4"
matrix-nio = "^0.22.1"
sh = "^2.0.6"
aiofiles = "^23.1.0"
PyYAML = "^6.0.1"
docker = "^6.1.3"
pytest = { version = "^7.4.3", 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 }
aioresponses = {version = "^0.7.6", optional = true}
ipython = { version = "^8.17.2", optional = true }
[tool.poetry.extras]
dev = ["pytest", "pytest-asyncio", "pytest-cov", "pytest-mock", "ipython", "pytest-benchmark", "aioresponses"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"