-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 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
[tool.poetry]
name = "err-discord-bridge"
version = "0.1.0"
description = "Errbot plugin to bridge your backend to discord"
authors = ["Andrew Herrington <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "discord_bridge"}]
include = ["*.plug"]
[tool.poetry.dependencies]
python = "^3.11"
discord-py = "^2.3.2"
pydantic = "^2.7.1"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
coverage = "^7.4.4"
pytest-cov = "^5.0.0"
pre-commit = "^3.7.0"
ruff = "^0.3.7"
pytest-xdist = "^3.5.0"
bandit = "^1.7.8"
pyupgrade = "^3.15.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."errbot.plugins"]
discord_bridge = "discord_bridge:DiscordBridge"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.pytest.ini_options]
norecursedirs = ".github ci .git .idea"
addopts = "-n auto --cov=discord_bridge --cov-report xml:.coverage.xml --cov-report=term-missing"
[tool.bandit.assert_used]
skips = ['*/test_*.py']