-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
58 lines (46 loc) · 1.39 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
[tool.poetry]
name = "lnst"
version = "16.1.0"
homepage = "http://lnst-project.org"
license = "GPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/LNST-project/lnst"
description = "Linux Network Stack Test"
authors = ["LNST Team <[email protected]>"]
maintainers = ["Ondrej Lichtner <[email protected]>", "Jan Tluka <[email protected]>",
"Jozef Urbanovsky <[email protected]>", "Perry Gagne <[email protected]>", "Jiri Pirko <[email protected]>"]
packages = [
{ include = "lnst"}
]
include = ["schema-am.rng", "install/*", "lnst-ctl.conf"]
[tool.poetry.dependencies]
python = "^3.9"
lxml = "*"
ethtool = "*"
pyroute2 = "*"
libvirt-python = {version = "*", optional = true }
podman = {version = "*", optional = true }
cryptography = {version = "*", optional = true }
pyyaml = {version = "*", optional = true}
psutil = "^5.9.4"
requests = "^2.30.0"
urllib3 = "<2"
[tool.poetry.extras]
virt = ["libvirt-python"]
containers = ["podman"]
sec_socket = ["cryptography"]
trex = ["pyyaml"]
[tool.poetry.scripts]
lnst-agent = 'lnst.Agent.__main__:main'
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.5"
pylint = "^3.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
'ignore:function ham\(\) is deprecated:DeprecationWarning',
]