diff --git a/CLAUDE.md b/CLAUDE.md index 7799672..bcd5873 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -760,7 +760,7 @@ This document evolves based on development experience: **DEPLOYMENT STRATEGY**: - Maintain backward compatibility with v0.1.0 - Gitea-only deployment continues -- Users install via: `pip install git+https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python.git@v0.2.0` +- Users install via: `pip install git+https://gitea.hotserv.cloud/lmiranda/py-wikijs.git@v0.2.0` **DEVELOPMENT PRINCIPLES**: 1. ✅ **Test-Driven Development**: Write tests first, then implementation diff --git a/README.md b/README.md index 0f502aa..a803a9a 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Python Support](https://img.shields.io/badge/python-3.8+-blue.svg)](https://python.org) -[![Repository](https://img.shields.io/badge/repo-Gitea-green.svg)](https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python) -[![Issues](https://img.shields.io/badge/issues-Gitea-blue.svg)](https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python/issues) +[![Repository](https://img.shields.io/badge/repo-Gitea-green.svg)](https://gitea.hotserv.cloud/lmiranda/py-wikijs) +[![Issues](https://img.shields.io/badge/issues-Gitea-blue.svg)](https://gitea.hotserv.cloud/lmiranda/py-wikijs/issues) **A professional Python SDK for Wiki.js API integration.** @@ -18,10 +18,10 @@ ### Installation ```bash # Install directly from Gitea -pip install git+https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python.git +pip install git+https://gitea.hotserv.cloud/lmiranda/py-wikijs.git # Or clone and install locally -git clone https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python.git +git clone https://gitea.hotserv.cloud/lmiranda/py-wikijs.git cd wikijs-python-sdk pip install -e . ``` @@ -118,7 +118,7 @@ We welcome contributions! This project showcases systematic development with pro ### Local Development ```bash # Clone and setup -git clone https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python.git +git clone https://gitea.hotserv.cloud/lmiranda/py-wikijs.git cd wikijs-python-sdk pip install -e ".[dev]" diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index d24e685..9a2258f 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -22,7 +22,7 @@ This project was developed by leomiranda, showcasing professional development pr 1. **Fork the Repository** ```bash # Fork on Gitea, then clone your fork - git clone https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python.git + git clone https://gitea.hotserv.cloud/lmiranda/py-wikijs.git cd wikijs-python-sdk ``` @@ -336,7 +336,7 @@ Significant contributors may be invited to become maintainers. 1. Read our [Governance](docs/GOVERNANCE.md) guidelines 2. Check the [current development status](CLAUDE.md) -3. Look for issues in the [repository](https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python/issues) +3. Look for issues in the [repository](https://gitea.hotserv.cloud/lmiranda/py-wikijs/issues) 4. Join the discussion! -**Questions?** Don't hesitate to create an issue in the [Gitea repository](https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python/issues). \ No newline at end of file +**Questions?** Don't hesitate to create an issue in the [Gitea repository](https://gitea.hotserv.cloud/lmiranda/py-wikijs/issues). \ No newline at end of file diff --git a/docs/wikijs_sdk_release_plan.md b/docs/wikijs_sdk_release_plan.md index 049dc74..c170417 100644 --- a/docs/wikijs_sdk_release_plan.md +++ b/docs/wikijs_sdk_release_plan.md @@ -1,7 +1,7 @@ # Wiki.js Python SDK - Release Plan **Project Name:** `wikijs-python-sdk` -**Repository:** `https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python` +**Repository:** `https://gitea.hotserv.cloud/lmiranda/py-wikijs` **License:** MIT **Target Audience:** Python developers, DevOps engineers, Data scientists @@ -66,7 +66,7 @@ gantt - **Documentation**: API documentation and usage examples ### Success Criteria -- [ ] Package installable via `pip install git+https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python.git` +- [ ] Package installable via `pip install git+https://gitea.hotserv.cloud/lmiranda/py-wikijs.git` - [ ] Basic page operations work with real Wiki.js instance - [ ] >85% test coverage with passing CI/CD - [ ] Complete API documentation diff --git a/pyproject.toml b/pyproject.toml index 4d5c05b..30496dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,10 +60,10 @@ all = [ ] [project.urls] -Homepage = "https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python" -"Bug Reports" = "https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python/issues" -Source = "https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python" -Documentation = "https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python/src/branch/main/docs" +Homepage = "https://gitea.hotserv.cloud/lmiranda/py-wikijs" +"Bug Reports" = "https://gitea.hotserv.cloud/lmiranda/py-wikijs/issues" +Source = "https://gitea.hotserv.cloud/lmiranda/py-wikijs" +Documentation = "https://gitea.hotserv.cloud/lmiranda/py-wikijs/src/branch/main/docs" [tool.setuptools.dynamic] version = {attr = "wikijs.version.__version__"} diff --git a/setup.py b/setup.py index 9c6b643..a4fb4d2 100644 --- a/setup.py +++ b/setup.py @@ -49,11 +49,11 @@ setup( long_description_content_type="text/markdown", author="leomiranda", author_email="lmiranda@hotserv.cloud", - url="https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python", + url="https://gitea.hotserv.cloud/lmiranda/py-wikijs", project_urls={ - "Bug Reports": "https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python/issues", - "Source": "https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python", - "Documentation": "https://gitea.hotserv.cloud/lmiranda/wikijs-sdk-python/src/branch/main/docs", + "Bug Reports": "https://gitea.hotserv.cloud/lmiranda/py-wikijs/issues", + "Source": "https://gitea.hotserv.cloud/lmiranda/py-wikijs", + "Documentation": "https://gitea.hotserv.cloud/lmiranda/py-wikijs/src/branch/main/docs", }, packages=find_packages(), include_package_data=True,