summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2026-06-23 00:39:08 +0200
committeruser@node5.net <user@node5.net>2026-06-23 00:39:08 +0200
commitf5ff82d7293b50ec412231e65b4480d6bf206fcc (patch)
tree451840c54bfbb501a5621a8324658fa8ae1d020f /pyproject.toml
parent7b8b244d074ca1639ae61332a086c78a22474857 (diff)
nixify repo, 2026 headline design, debug environment variables
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..3c1cbf6
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,17 @@
+[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_bornhack = "text_tv_bornhack:main"