-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.05 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
49
50
51
52
53
54
55
[tool.poetry]
name = "org.casavant.jeff.twilio"
version = "0.2.0rc1"
description = "Maubot plugin to bridge rooms to SMS using Twilio"
authors = ["Jeff Casavant <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
maubot = "^0.3.1"
mautrix = "^0.15.8"
twilio = "^7.9.2"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
black = "^21.8b0"
safety = "^1.10.3"
pylint = "^2.10.2"
isort = "^5.9.3"
toml = "^0.10.2"
"ruamel.yaml" = "^0.17.16"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint."MESSAGES_CONTROL"]
disable = [
"bad-continuation",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"too-few-public-methods",
"too-many-locals",
"too-many-statements"
]
[tool.pylint."FORMAT"]
max-line-length = 120
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.maubot]
maubot = "0.1.0"
modules = ["twilio_plugin"]
main_class = "TwilioPlugin"
database = true
webapp = true
extra_files = [
"base-config.yaml",
]