17 lines
486 B
TOML
17 lines
486 B
TOML
[build-system]
|
|
requires = ["setuptools", "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."
|
|
license = {file = "LICENSE"}
|
|
dependencies = [
|
|
# List your dependencies here, e.g., "numpy", "pandas>=1.0"
|
|
]
|
|
include-package-data = true
|
|
|
|
[project.scripts]
|
|
iottb = "iottb.__main__:main" |