-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (52 loc) · 1.37 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
63
64
65
66
67
[tool.poetry]
name = "kalandra"
version = "0.4.1"
description = ""
authors = ["Lukasz Rekucki <lrekucki@gmail.com>"]
readme = "README.md"
packages = [{ include = "kalandra", from = "src/" }]
license = "Apache-2.0"
[tool.poetry.scripts]
kalandra = 'kalandra.__main__:run'
[tool.poetry.dependencies]
python = "^3.12"
asyncssh = "^2.17.0"
aiofiles = "^24.1.0"
aiohttp = "^3.11.12"
pygithub = { version = "^2.6.1", optional = true }
[tool.poetry.extras]
github = ["pygithub"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^5.0"
pytest-asyncio = "^0.25.3"
[tool.pytest]
[tool.pytest.ini_options]
addopts = '--import-mode=importlib --cov --cov-report=lcov'
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(levelname)8s %(message)s"
markers = ["http_interactions: mark test as requiring HTTP interactions"]
testpaths = ['tests']
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.lcov]
output = 'build/coverage.lcov'
[tool.coverage.report]
format = 'markdown'
[tool.coverage.run]
branch = true
data_file = 'build/coverage.data'
source = ['kalandra']
[tool.coverage.xml]
output = 'build/coverage.xml'
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
extend-select = ['I', 'TID']
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"