Update gitignore and project version
Update `.gitignore` to include Python cache directories and adjust project version in `pyproject.toml` to `0.1.0`
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,9 +1,10 @@
|
|||||||
audio_summary_with_local_LLM.egg-info/
|
src/__pycache__
|
||||||
.ruff_cache/
|
.ruff_cache/
|
||||||
|
src/audio_summary_with_local_LLM.egg-info/
|
||||||
# Virtual Env
|
# Virtual Env
|
||||||
.venv
|
.venv
|
||||||
|
|
||||||
# Local data
|
# Local data
|
||||||
.DS_Store
|
.DS_Store
|
||||||
tmp
|
tmp
|
||||||
summary.md
|
summary.md
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
|
[build-system]
|
||||||
|
requires = ["setuptools"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "audio-summary-with-local-LLM"
|
name = "audio-summary-with-local-LLM"
|
||||||
dynamic = ["version"]
|
version = "0.1.0"
|
||||||
description = 'Sum up your local or remote files with a local LLM'
|
description = 'Sum up your local or remote files with a local LLM'
|
||||||
keywords = ["audio", "summary", "local-llm", "ollama", "whisper"]
|
keywords = ["audio", "summary", "local-llm", "ollama", "whisper"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
Reference in New Issue
Block a user