From 02b5a496c4f25c1a34d4bbb89755332524111ed6 Mon Sep 17 00:00:00 2001 From: rob Date: Thu, 4 Dec 2025 12:47:14 -0400 Subject: [PATCH] Update all URLs to point to Gitea MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed all github.com references to gitea.brrd.tech/rob/smarttools - Updated pyproject.toml URLs - Updated documentation install commands - Updated curl examples for raw file access 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 11 ++++------- docs/EXAMPLES.md | 2 +- docs/INSTALL.md | 2 +- examples/install.py | 2 +- pyproject.toml | 9 ++++----- 5 files changed, 11 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index b28ac00..2c6d7ec 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ pip install smarttools ### From Source ```bash -git clone https://github.com/yourusername/smarttools.git +git clone https://gitea.brrd.tech/rob/smarttools.git cd smarttools pip install -e . ``` @@ -177,7 +177,7 @@ SmartTools comes with 28 pre-built examples you can install: ```bash # Download and run the example installer -curl -sSL https://raw.githubusercontent.com/yourusername/smarttools/main/examples/install.py | python3 +curl -sSL https://gitea.brrd.tech/rob/smarttools/raw/branch/main/examples/install.py | python3 # Or manually copy from examples/ ``` @@ -309,7 +309,7 @@ SmartTools is a **personal power tool**: ## Contributing ```bash -git clone https://github.com/yourusername/smarttools.git +git clone https://gitea.brrd.tech/rob/smarttools.git cd smarttools pip install -e ".[dev]" pytest @@ -317,10 +317,7 @@ pytest ## Support -If SmartTools saves you time, consider: - -- [GitHub Sponsors](https://github.com/sponsors/yourusername) -- [Buy Me a Coffee](https://buymeacoffee.com/yourusername) +If SmartTools saves you time, consider supporting the project! ## License diff --git a/docs/EXAMPLES.md b/docs/EXAMPLES.md index aab2969..1aecb2f 100644 --- a/docs/EXAMPLES.md +++ b/docs/EXAMPLES.md @@ -6,7 +6,7 @@ This document contains all 28 pre-built SmartTools with their full configuration ```bash # Install all example tools -curl -sSL https://raw.githubusercontent.com/yourusername/smarttools/main/examples/install.py | python3 +curl -sSL https://gitea.brrd.tech/rob/smarttools/raw/branch/main/examples/install.py | python3 smarttools refresh ``` diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 6de8b86..4a16d5d 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -39,7 +39,7 @@ pip install smarttools **From source (for development):** ```bash -git clone https://github.com/yourusername/smarttools.git +git clone https://gitea.brrd.tech/rob/smarttools.git cd smarttools pip install -e . ``` diff --git a/examples/install.py b/examples/install.py index 8fdffff..cc0ae23 100644 --- a/examples/install.py +++ b/examples/install.py @@ -9,7 +9,7 @@ Usage: python3 install.py --category dev # Install category Run from anywhere: - curl -sSL https://raw.githubusercontent.com/yourusername/smarttools/main/examples/install.py | python3 + curl -sSL https://gitea.brrd.tech/rob/smarttools/raw/branch/main/examples/install.py | python3 """ import argparse diff --git a/pyproject.toml b/pyproject.toml index 0cb7a6f..5efc203 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,11 +50,10 @@ all = [ smarttools = "smarttools.cli:main" [project.urls] -Homepage = "https://github.com/rob/smarttools" -Documentation = "https://github.com/rob/smarttools#readme" -Repository = "https://github.com/rob/smarttools.git" -Issues = "https://github.com/rob/smarttools/issues" -Changelog = "https://github.com/rob/smarttools/releases" +Homepage = "https://gitea.brrd.tech/rob/smarttools" +Documentation = "https://gitea.brrd.tech/rob/smarttools#readme" +Repository = "https://gitea.brrd.tech/rob/smarttools.git" +Issues = "https://gitea.brrd.tech/rob/smarttools/issues" [tool.setuptools.packages.find] where = ["src"]