use pyproject.toml
This commit is contained in:
parent
b421e330f4
commit
465a5574b8
5 changed files with 166 additions and 85 deletions
14
pyproject.toml
Normal file
14
pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue