use pyproject.toml

This commit is contained in:
Prunebutt 2025-09-27 15:51:47 +02:00
parent b421e330f4
commit 465a5574b8
5 changed files with 166 additions and 85 deletions

14
pyproject.toml Normal file
View file

@ -0,0 +1,14 @@
[project]
name = "scanbuddy-server"
version = "0.1.0"
description = "A REST server for the scanbuddy shell-script"
# define any Python dependencies
dependencies = [
"flask>3",
]
# define the CLI executable
# Here, we define the entry point to be the 'main()' function in the module 'app/main.py'
[project.scripts]
scanbuddy-server = "server.server:main"