-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (36 loc) · 1.13 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
[tool.poetry]
name = "proxmox-cluster-tasks"
version = "0.8.2"
description = ""
authors = ["lexxai <lexxai@gmail.com>"]
readme = "README.md"
packages = [{include = "cluster_tasks", from = "src", to = "proxmox_cluster_tasks"},
{include = "config_loader", from = "src", to = "proxmox_cluster_tasks"},
{include = "ext_api", from = "src", to = "proxmox_cluster_tasks"},
{include = "*.py", from = "src", to = "proxmox_cluster_tasks"},
]
include = [ "configs/*" ]
[tool.poetry.dependencies]
python = "^3.11"
python-dotenv = "==1.0.1"
httpx = {extras = ["http2"], version = "^0.28.1"}
paramiko = "^3.5.0"
asyncssh = "^2.19.0"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-asyncio = "^0.25.0"
pytest-mock = "^3.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "src"
asyncio_default_fixture_loop_scope = "function"
log_cli = true
[tool.poetry.scripts]
proxmox-cluster-tasks = "proxmox_cluster_tasks.main:cli"
# Correct placement for package inclusion