Update version to 0.5.2 and enhance installation instructions in README
All checks were successful
Gitea/kapitanbooru-uploader/pipeline/head This commit looks good

This commit is contained in:
Michał Leśniak 2025-03-15 23:45:56 +01:00
parent 56640942c8
commit 0978dd8e3c
5 changed files with 40 additions and 22 deletions

View File

@ -12,25 +12,47 @@ Kapitanbooru Uploader is a GUI application for uploading images to KapitanBooru.
## Installation
1. Clone the repository:
```sh
git clone https://git.mlesniak.pl/kapitan/kapitanbooru-uploader.git
cd kapitanbooru-uploader
```
2. Install the required dependencies:
```sh
pip install -r requirements.txt
2. **Standard Installation (Supports most NVIDIA GPUs):**
```bash
pip install .
```
3. Ensure you have the required Python version:
3. **For RTX 50xx (Blackwell GPUs) with CUDA 12 Nightly Support:**
Requires the `cuda12-nightly` extra and PyTorch nightly binaries:
```bash
pip install ".[cuda12-nightly]" --extra-index-url https://download.pytorch.org/whl/nightly/cu128 --pre
```
Using `pipx` for isolated installation:
```bash
pipx install "kapitanbooru-uploader[cuda12-nightly]" --pip-args "--extra-index-url https://download.pytorch.org/whl/nightly/cu128 --pre"
```
4. Verify Python version:
```sh
python --version
# Should be >= 3.13
```
⚠️ **Notes:**
- The `cuda12-nightly` extra depends on pre-release PyTorch packages from the specified index.
- Private PyPI repository (for `wdtagger[cuda12-nightly]`) must already be configured in your environment (no URL needed here).
## Usage
1. Run the application:
```sh
python -m kapitanbooru_uploader.main
```
@ -45,13 +67,6 @@ Configuration settings can be found in the `settings.json` file located in the a
## Development
### Running Tests
To run tests, use the following command:
```sh
pytest
```
### Debugging
You can use the provided VSCode launch configurations to debug the application. Open the `.vscode/launch.json` file and select the appropriate configuration.

View File

@ -142,7 +142,7 @@ class ImageBrowser(tk.Tk):
super().__init__()
self.title("Kapitanbooru Uploader")
self.geometry("900x600")
self.version = "0.5.1"
self.version = "0.5.2"
self.acknowledged_version = parse_version(self.version)
self.settings = Settings()

View File

@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: Kapitanbooru Uploader 0.5.1\n"
"Project-Id-Version: Kapitanbooru Uploader 0.5.2\n"
"Report-Msgid-Bugs-To: kapitan@mlesniak.pl\n"
"POT-Creation-Date: 2025-03-15 19:42+0100\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: Kapitanbooru Uploader 0.5.1\n"
"Project-Id-Version: Kapitanbooru Uploader 0.5.2\n"
"Report-Msgid-Bugs-To: kapitan@mlesniak.pl\n"
"POT-Creation-Date: 2025-03-15 19:42+0100\n"
"Language: pl\n"

View File

@ -4,23 +4,26 @@ build-backend = "setuptools.build_meta"
[project]
name = "kapitanbooru-uploader"
version = "0.5.1"
version = "0.5.2"
description = "A GUI application for uploading images to KapitanBooru"
authors = [
{name = "Michał Leśniak", email = "kapitan@mlesniak.pl"}
]
authors = [{ name = "Michał Leśniak", email = "kapitan@mlesniak.pl" }]
dependencies = [
"networkx==3.4.2",
"Pillow==11.1.0",
"pywin32==309",
"requests==2.32.3",
"wdtagger[cuda12-nightly]==0.14.0",
"wdtagger==0.14.0",
"bs4==0.0.2",
"tomli==2.2.1"
"tomli==2.2.1",
]
requires-python = ">=3.13"
readme = "README.md"
license = {file = "LICENSE"}
license = { file = "LICENSE" }
[project.optional-dependencies]
cuda12-nightly = [
"wdtagger[cuda12-nightly]==0.14.0",
] # Pulls from private PyPI (auto-configured via env)
[project.scripts]
kapitanbooru-uploader = "kapitanbooru_uploader.__main__:main"