Update all URLs to point to Gitea
- 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 <noreply@anthropic.com>
This commit is contained in:
parent
4c71dbded2
commit
02b5a496c4
11
README.md
11
README.md
|
|
@ -55,7 +55,7 @@ pip install smarttools
|
||||||
### From Source
|
### From Source
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/yourusername/smarttools.git
|
git clone https://gitea.brrd.tech/rob/smarttools.git
|
||||||
cd smarttools
|
cd smarttools
|
||||||
pip install -e .
|
pip install -e .
|
||||||
```
|
```
|
||||||
|
|
@ -177,7 +177,7 @@ SmartTools comes with 28 pre-built examples you can install:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Download and run the example installer
|
# 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/
|
# Or manually copy from examples/
|
||||||
```
|
```
|
||||||
|
|
@ -309,7 +309,7 @@ SmartTools is a **personal power tool**:
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/yourusername/smarttools.git
|
git clone https://gitea.brrd.tech/rob/smarttools.git
|
||||||
cd smarttools
|
cd smarttools
|
||||||
pip install -e ".[dev]"
|
pip install -e ".[dev]"
|
||||||
pytest
|
pytest
|
||||||
|
|
@ -317,10 +317,7 @@ pytest
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
If SmartTools saves you time, consider:
|
If SmartTools saves you time, consider supporting the project!
|
||||||
|
|
||||||
- [GitHub Sponsors](https://github.com/sponsors/yourusername)
|
|
||||||
- [Buy Me a Coffee](https://buymeacoffee.com/yourusername)
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ This document contains all 28 pre-built SmartTools with their full configuration
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Install all example tools
|
# 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
|
smarttools refresh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ pip install smarttools
|
||||||
|
|
||||||
**From source (for development):**
|
**From source (for development):**
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/yourusername/smarttools.git
|
git clone https://gitea.brrd.tech/rob/smarttools.git
|
||||||
cd smarttools
|
cd smarttools
|
||||||
pip install -e .
|
pip install -e .
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ Usage:
|
||||||
python3 install.py --category dev # Install category
|
python3 install.py --category dev # Install category
|
||||||
|
|
||||||
Run from anywhere:
|
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
|
import argparse
|
||||||
|
|
|
||||||
|
|
@ -50,11 +50,10 @@ all = [
|
||||||
smarttools = "smarttools.cli:main"
|
smarttools = "smarttools.cli:main"
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Homepage = "https://github.com/rob/smarttools"
|
Homepage = "https://gitea.brrd.tech/rob/smarttools"
|
||||||
Documentation = "https://github.com/rob/smarttools#readme"
|
Documentation = "https://gitea.brrd.tech/rob/smarttools#readme"
|
||||||
Repository = "https://github.com/rob/smarttools.git"
|
Repository = "https://gitea.brrd.tech/rob/smarttools.git"
|
||||||
Issues = "https://github.com/rob/smarttools/issues"
|
Issues = "https://gitea.brrd.tech/rob/smarttools/issues"
|
||||||
Changelog = "https://github.com/rob/smarttools/releases"
|
|
||||||
|
|
||||||
[tool.setuptools.packages.find]
|
[tool.setuptools.packages.find]
|
||||||
where = ["src"]
|
where = ["src"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue