-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (30 loc) · 869 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
[tool.poetry]
name = "pingpong-slackbot"
version = "0.1.0"
description = ""
authors = ["Erlend Vollset <[email protected]>"]
[tool.black]
line-length = 120
target_version = ['py38']
include = '\.py$'
[tool.isort]
line_length=120 # corresponds to -w flag
multi_line_output=3 # corresponds to -m flag
include_trailing_comma=true # corresponds to -tc flag
skip_glob = '^((?!py$).)*$' # isort all Python files
float_to_top=true
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=bulk-import.py"
[tool.poetry.dependencies]
python = "^3.10"
slack-sdk = "^3.11.2"
cognite-sdk-core = "^2.32.0"
structlog = "^21.2.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pre-commit = "^2.15.0"
mypy = "^0.910"
tenacity = "^8.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"