-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
47 lines (39 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
[tool.poetry]
name = "lettuce-blt"
version = "0.1.0"
description = ""
authors = ["OWASP BLT Team", "Sarthak5598 <[email protected]>"]
readme = "README.md"
packages = [{ include = "lettuce", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.3"
python-dotenv = "^1.0.1"
gitpython = "^3.1.43"
slack-machine = { git = "https://github.com/Owasp-blt/slack-machine" }
slackeventsapi = "^3.0.1"
slack-sdk = "^3.27.2"
[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"
[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", "W"]
[tool.ruff.lint.flake8-errmsg]
max-string-length = 99
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"