diff options
| author | user@node5.net <user@node5.net> | 2026-06-18 22:41:33 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2026-06-18 23:10:33 +0200 |
| commit | 84f6db9d7b5070c2101cd0fb3971471df70e13f9 (patch) | |
| tree | 7ed03e161b0f1115f3315b5b54ae1b8f149cc8fc /pyproject.toml | |
| parent | 52c5f75f80136bd5017abc88cb4b176b6aae9cda (diff) | |
nixify running
needs databse, this is handled separately
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..37d0fc5 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,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" |
