aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 37d0fc59b12279afd0c6298febc7e0c131aae6d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[project]
name = "map.node5.net"
version = "0.1.0"
description = "Flask project to host map.node5.net map"

# define any Python dependencies
dependencies = [
  "Flask~=3.0",
  "PyYAML~=6.0",
  "psycopg~=3.1",
]

# define the CLI executable
# Here, we define the entry point to be the 'main()' function in the module 'app/main.py'
[project.scripts]
node5-map = "map_node5_net:main"