16 lines
416 B
TOML
16 lines
416 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"
|
|
|
|
[tool.setuptools]
|
|
packages = ["iottb"]
|
|
|
|
[project.scripts]
|
|
iottb = "iottb.__main__:main" |