forked from LNST-project/lnst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 918 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
[tool.poetry]
name = "lnst"
version = "15.8.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 = ["lnst_slave_cli.py", "schema-sm.rng", "install/*", "lnst-ctl.conf", "lnst-slave.conf"]
[tool.poetry.dependencies]
python = "*"
pyroute2 = "*"
pyyaml = "*"
lxml = "*"
libvirt-python = "*"
ethtool = "*"
dataclasses = "*"
[tool.poetry.scripts]
lnst-slave = 'lnst_slave_cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"