-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (38 loc) · 921 Bytes
/
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
[tool.poetry]
name = "libvirt-instance"
version = "0.1.7"
description = "VM provisioning and management tool"
authors = ["Sergej Alikov <[email protected]>"]
license = "MIT"
repository = "https://github.com/node13h/libvirt-instance"
readme = "README.md"
packages = [
{ include = "libvirt_instance", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
PyYAML = "^6.0.1"
libvirt-python = ">=8.0"
pycdlib = "^1.14.0"
[tool.poetry.dev-dependencies]
pytest = "^8.2.2"
black = "^24.4.1"
flake8 = "^7.1.0"
isort = "^5.13.2"
mypy = "^1.10"
coverage = "^7.5.3"
types-PyYAML = "^6.0.12"
[tool.poetry.scripts]
libvirt-instance = 'libvirt_instance.cli:main'
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.coverage.run]
source = ["src"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"