forked from matrix-nio/matrix-nio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (44 loc) · 1.24 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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "matrix-nio"
version = "0.21.2"
description = "A Python Matrix client library, designed according to sans I/O principles."
authors = ["Damir Jelić <[email protected]>"]
license = "ISC"
readme = "README.md"
repository = "https://github.com/poljar/matrix-nio"
documentation = "https://matrix-nio.readthedocs.io/en/latest/"
packages = [
{include = "nio"}
]
[tool.poetry.dependencies]
python = "^3.8.0"
future = "^0.18.2"
aiohttp = "^3.8.3"
aiofiles = "^23.1.0"
h11 = "^0.14.0"
h2 = "^4.0.0"
jsonschema = "^4.4.0"
unpaddedbase64 = "^2.1.0"
pycryptodome = "^3.10.1"
python-olm = { version = "^3.1.3", optional = true }
peewee = { version = "^3.14.4", optional = true }
cachetools = { version = "^4.2.1", optional = true }
atomicwrites = { version = "^1.4.0", optional = true }
aiohttp-socks = "^0.7.0"
[tool.poetry.extras]
e2e = ["python-olm", "peewee", "cachetools", "atomicwrites"]
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
pytest-isort = "^1.3.0"
pytest-cov = "^2.11.1"
hyperframe = "^6.0.0"
hypothesis = "^6.8.9"
hpack = "^4.0.0"
faker = "^8.0.0"
mypy = "^0.812"
pytest-aiohttp = "^0.3.0"
aioresponses = "^0.7.2"
pytest-benchmark = "^3.2.3"