-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (42 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (42 loc) · 1.06 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
50
51
52
[tool.poetry]
name = "safe-chat-slack-bot"
version = "0.1.0"
description = "SafeChat Slack Bot is an open-source project designed to enhance data security within Slack workspaces"
authors = ["Marciel Torres <marcielribeirotorres@gmail.com>"]
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
slack-bolt = "1.28.0"
aiohttp = "3.14.0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-cov = "^7.1.0"
pytest-asyncio = "^1.3.0"
ruff = "^0.15.4"
[tool.pytest.ini_options]
testpaths = ["tests",]
pythonpath = ["src",]
[tool.coverage.run]
branch = true
omit = ["*/tests/*", "src/bot.py"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.coverage.html]
directory = "htmlcov"
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "S"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"