blob: d11abf477710584a950f2ec3603cb8dcd3fd968d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[project]
name = "text-tv_bornhack"
version = "0.1.0"
description = "Flask project to host text-tv bornhack, "
# define any Python dependencies
dependencies = [
"Flask~=3.1",
"piexif~=1.1",
"geopy~=2.4",
"pillow~=12.2",
]
# define the CLI executable
# Here, we define the entry point to be the 'main()' function in the module 'app/main.py'
[project.scripts]
node5-text-tv = "text_tv:main"
node5-text-tv-program = "program:main"
|