From 457c70efe3741db3333f86885e5ce4da9777481f Mon Sep 17 00:00:00 2001 From: Rene Luria Date: Mon, 11 Aug 2025 15:00:59 +0200 Subject: [PATCH] chore: Remove build-and-upload entry point and bump version to 0.3.2 --- README.md | 11 +++-------- pyproject.toml | 3 +-- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cdc20af..6b71488 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,9 @@ password = YOUR_GITEA_PERSONAL_ACCESS_TOKEN You can use the template provided in `GITEA_PYPI_CONFIG_TEMPLATE.txt` as a starting point. -### Using the Build and Upload Scripts +### Using the Build and Upload Scripts (Development Only) + +These scripts are intended for development purposes only and are not installed with the package. They should only be used by developers working on the project. #### Option 1: Using the shell script @@ -173,13 +175,6 @@ uv run scripts/build_and_upload.py make upload ``` -#### Option 4: Using the installed command - -After installing the package in development mode: -```bash -uv pip install -e . -build-and-upload -``` ### Manual Build and Upload diff --git a/pyproject.toml b/pyproject.toml index 5e2cd2c..0ac8b7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paroles-net-scraper" -version = "0.3.1" +version = "0.3.2" description = "A Python package to fetch song lyrics from paroles.net" authors = [ {name = "Rene Luria", email = "rene@luria.ch"} @@ -24,7 +24,6 @@ dev = [ [project.scripts] paroles-scraper = "paroles_net_scraper.cli:main" -build-and-upload = "scripts.build_and_upload:main" [project.urls] Homepage = "https://gitea.parano.ch/herel/paroles-net-scraper"