From 84f6db9d7b5070c2101cd0fb3971471df70e13f9 Mon Sep 17 00:00:00 2001 From: "user@node5.net" Date: Thu, 18 Jun 2026 22:41:33 +0200 Subject: nixify running needs databse, this is handled separately --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') 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" -- cgit v1.2.3