19 lines
472 B
TOML
19 lines
472 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "iottb"
|
|
version = "0.1.0"
|
|
authors = [{name = "Sebastian Lenzlinger", email = "sebastian.lenzlinger@unibas.ch"}]
|
|
description = "Automation Tool for Capturing Network packets of IoT devices."
|
|
requires-python = ">=3.8"
|
|
dependencies = []
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
exclude = ["tests*", "docs*"]
|
|
|
|
[project.scripts]
|
|
iottb = "iottb.__main__:main"
|