-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (42 loc) · 1.03 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
[tool.poetry]
name = "blt-sammich"
version = "0.1.0"
description = ""
authors = ["Sarthak5598 <sarthak5598sharma@gmail.com>"]
readme = "README.md"
packages = [{ include = "sammich", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
slack-machine = "^0.37.0"
python-dotenv = "^1.0.1"
gitpython = "^3.1.43"
slack-sdk = "^3.27.2"
slackeventsapi = "^3.0.1"
requests = "^2.32.3"
dateparser = "^1.2.0"
pygithub = "^2.3.0"
slack-bolt = "^1.19.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-asyncio = "^0.23.7"
pytest-mock = "^3.14.0"
ruff = "^0.4.8"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-asyncio = "^0.23.7"
pytest-mock = "^3.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
known_first_party = ["lettuce", "tests"]
line_length = 99
multi_line_output = 3
profile = "black"
[tool.ruff]
line-length = 99
target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E5", "E7", "E9", "F", "N"]
[tool.ruff.lint.flake8-errmsg]
max-string-length = 99