From bda2b516a470c84b7b78c3b4ee5caf35fa52fc7a Mon Sep 17 00:00:00 2001 From: Damien Date: Tue, 9 Jun 2026 08:42:44 +0200 Subject: [PATCH] Update gitignore and project version Update `.gitignore` to include Python cache directories and adjust project version in `pyproject.toml` to `0.1.0` --- .gitignore | 5 +++-- pyproject.toml | 6 +++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ab876c3..7d10a25 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,10 @@ -audio_summary_with_local_LLM.egg-info/ +src/__pycache__ .ruff_cache/ +src/audio_summary_with_local_LLM.egg-info/ # Virtual Env .venv # Local data .DS_Store tmp -summary.md \ No newline at end of file +summary.md diff --git a/pyproject.toml b/pyproject.toml index 6a3886a..9a1840c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,10 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + [project] name = "audio-summary-with-local-LLM" -dynamic = ["version"] +version = "0.1.0" description = 'Sum up your local or remote files with a local LLM' keywords = ["audio", "summary", "local-llm", "ollama", "whisper"] readme = "README.md"