forked from imbev/simplematrixbotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.2 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
[tool.poetry]
name = "simplematrixbotlib"
version = "2.8.0"
description = "An easy to use bot library for the Matrix ecosystem written in Python."
authors = ["imbev <imbev@protonmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://codeberg.org/imbev/simplematrixbotlib"
documentation = "https://simple-matrix-bot-lib.readthedocs.io/en/latest/"
keywords = [
"simple",
"matrix",
"bot",
"lib",
"simple-matrix-bot-lib"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Communications :: Chat",
"Topic :: Internet"
]
[tool.poetry.urls]
"Matrix Room" = "https://matrix.to/#/#simplematrixbotlib:matrix.org"
[tool.poetry.dependencies]
python = "^3.8"
matrix-nio = "0.19"
python-cryptography-fernet-wrapper = ">=1.0.4"
pillow = ">=8.2"
markdown = ">=3.3"
toml = "^0.10.2"
[tool.poetry.dev-dependencies]
wheel = "^0.37.0"
twine = "^3.4.2"
pytest = "^6.2.5"
bandit = "^1.7.1"
mypy = "^0.930"
types-Markdown = "^3.3.9"
types-aiofiles = "^0.7.0"
types-toml = "^0.10.1"
yapf = "^0.32.0"
pytest-github-actions-annotate-failures = "^0.1.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"