aboutsummaryrefslogtreecommitdiff
path: root/gemini-to-web/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'gemini-to-web/pyproject.toml')
-rw-r--r--gemini-to-web/pyproject.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/gemini-to-web/pyproject.toml b/gemini-to-web/pyproject.toml
new file mode 100644
index 0000000..54576df
--- /dev/null
+++ b/gemini-to-web/pyproject.toml
@@ -0,0 +1,19 @@
+[project]
+name = "gemini-to-web"
+version = "0.0.0"
+authors = [
+ { name = "alex", email = "alex@pdp7.net" }
+]
+requires-python = ">=3.12"
+dependencies = [
+ "htmlgenerator>=1.2.32",
+ "lxml>=6.0.2",
+]
+
+[project.scripts]
+coppewebite-parse = "gemini_to_web.parser:cli_parse"
+coppewebite-to-html = "gemini_to_web.html:cli_to_html"
+
+[build-system]
+requires = ["uv_build>=0.9.30,<0.10.0"]
+build-backend = "uv_build"