-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (49 loc) · 1.48 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
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "err-aprs-backend"
version = "0.5.1"
description = "Errbot APRS backend plugin"
authors = ["Andrew Herrington <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "aprs_backend"}]
include = ["*.plug"]
[tool.poetry.dependencies]
python = "^3.11"
aprslib = "^0.7.2"
expiringdict = "^1.2.2"
dataclasses-json = "^0.6.4"
better-profanity = "^0.7.0"
httpx = "^0.27.0"
[tool.poetry.plugins]
[tool.poetry.plugins."errbot.backend_plugins"]
aprs = "aprs_backend:APRSBackend"
[tool.poetry.plugins."errbot.plugins"]
help = "aprs_backend:APRSHelp"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
coverage = {extras = ["toml"], version = ">=6.5,<8.0"}
pre-commit = ">=2.12.1"
pep8-naming = ">=0.13.2,<0.15.0"
reorder-python-imports = "^3.9.0"
pre-commit-hooks = "^4.2.0"
pyupgrade = "^3.15.2"
pytest-xdist = "^3.1.0"
ruff = ">=0.5.1,<0.9.11"
bandit = "^1.7.8"
pytest-subtests = ">=0.12.1,<0.15.0"
pytest-cov = ">=5,<7"
pytest-asyncio = ">=0.23.6,<0.26.0"
pytest-httpx = ">=0.30,<0.35"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.bandit]
exclude_dirs = ["tests", "noxfile.py", ".github/scripts", "test_errbot", "dist"]
[tool.errbot.backend_plugins]
supported_errbot_version = ">=6.2.0"
[tool.pytest.ini_options]
norecursedirs = ".github ci .git .idea"
addopts = "-n auto --cov=aprs_backend --cov-report xml:.coverage.xml --cov-report=term-missing"