-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 806 Bytes
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
[project]
name = "p5.libvirt_lxc_helper"
readme = "README.md"
version = "0.0.0"
authors = [{name = "p5-vbnekit", email = "vbnekit@gmail.com"}]
description = "libvirt_lxc helper tool"
maintainers = [{name = "p5-vbnekit", email = "vbnekit@gmail.com"}]
dependencies = ["python-magic"]
license-files = ["LICENSE"]
[project.urls]
repository = "https://github.com/p5-vbnekit/p5-python3-libvirt_lxc_helper"
[project.scripts]
p5-libvirt_lxc_helper = "p5.libvirt_lxc_helper:entry_point"
[project.optional-dependencies]
dev = ["pyproject-flake8"]
[build-system]
requires = ["setuptools"]
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]
minversion = "6.0"
[tool.flake8]
extend-ignore = ["E251", "E701"]
max-line-length = 128
[tool.setuptools]
package-dir = {"p5.libvirt_lxc_helper" = "src"}