2025-09-27 15:51:47 +02:00
|
|
|
[project]
|
|
|
|
|
name = "scanbuddy-server"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "A REST server for the scanbuddy shell-script"
|
|
|
|
|
|
|
|
|
|
# define any Python dependencies
|
|
|
|
|
dependencies = [
|
|
|
|
|
"flask>3",
|
2025-09-27 18:54:24 +02:00
|
|
|
"waitress"
|
2025-09-27 15:51:47 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
# 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"
|