scanbuddy/pyproject.toml

15 lines
358 B
TOML
Raw Normal View History

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",
]
# 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"