generated from marcieltorres/python-boilerplate-project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (40 loc) · 1.01 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
[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"
[tool.poetry.dependencies]
python = "^3.11"
slack-bolt = "1.21.2"
aiohttp = "3.11.8"
[tool.poetry.dev-dependencies]
pytest = "^8.0.0"
pytest-cov = "^6.0.0"
ruff = "^0.8.1"
[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"