This commit is contained in:
Sebastian Lenzlinger
2024-06-12 16:04:32 +02:00
parent e5ece09c33
commit 2b782bbdca
4 changed files with 19 additions and 21 deletions

17
code/pyproject.toml Normal file
View File

@@ -0,0 +1,17 @@
[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"