23 lines
461 B
TOML
23 lines
461 B
TOML
[tool.poetry]
|
|
name = "iottb"
|
|
version = "0.1.0"
|
|
description = "IoT Testbed"
|
|
authors = ["Sebastian Lenzlinger <sebastian.lenzlinger@unibas.ch>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
click = "^8.1"
|
|
# scapy = "^2.5"
|
|
click-option-group = "^0.5.6"
|
|
|
|
[tool.poetry.scripts]
|
|
iottb = "iottb.main:cli"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest = "^8.2.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|