forked from zoni/slack-trigger-pd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 894 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
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "slack-trigger-pd"
version = "0.1.0"
description = ""
authors = ["Nick Groenen <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
slack-sdk = "^3.10.1"
sentry-sdk = "^1.3.1"
pdpyras = "^4.3.0"
[tool.poetry.dev-dependencies]
azure-functions = "^1.7.2"
pycodestyle = "^2.7.0"
black = "^21.8b0"
mypy = "^0.910"
pylint = "^2.10.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.FORMAT]
max-line-length = 88
[tool.pylint."MESSAGES CONTROL"]
disable = [
"missing-module-docstring",
"too-few-public-methods",
# Globals should generally be avoided, however in Azure Functions this is
# the only elegant way to share state across threads and invocations.
"global-statement",
]
[tool.black]
line-length = 88
[[tool.mypy.overrides]]
module = [
"pdpyras"
]
ignore_missing_imports = true