From a22ea08c04e41b35518de30433ec45f32f7682bd Mon Sep 17 00:00:00 2001 From: Brent Edwards Date: Mon, 29 Dec 2025 18:17:48 -0800 Subject: [PATCH] I don't know why pyproject was wrong. Updating. --- pyproject.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 29d6ae7..4eecc8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "app-boilerplate" version = "0.1.0" description = "Replace with a short summary of your project." readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.10" license = {text = "MIT"} authors = [ {name = "Your Name", email = "your.email@example.com"}, @@ -23,6 +23,13 @@ classifiers = [ dependencies = [ "click>=8.3.0", + # Add your actual dependencies here: + "datasets>=2.0.0", # HuggingFace datasets + "rich>=13.0.0", # Terminal formatting + "rdflib>=7.0.0", # RDF processing + "pyarrow>=14.0.0", # Parquet/Arrow data + "httpx>=0.25.0", # HTTP client (async) + "requests>=2.31.0", # HTTP client (sync) ] [project.optional-dependencies]