From e7cc2230191adea2bba936f1a9baa48c1b01459e Mon Sep 17 00:00:00 2001 From: Travis Beauvais Date: Wed, 12 Nov 2025 14:10:52 -0800 Subject: [PATCH] Update repo URLs to Mozilla-Ocho/tabstack-python MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 16 ++++++++-------- pyproject.toml | 4 ++-- setup.cfg | 2 +- setup.py | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 3a0f7a2..c1aa013 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ [![PyPI version](https://badge.fury.io/py/tabstack.svg)](https://badge.fury.io/py/tabstack) [![Python Versions](https://img.shields.io/pypi/pyversions/tabstack.svg)](https://pypi.org/project/tabstack/) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) -[![Tests](https://github.com/tabstack/tabs-python/workflows/Tests/badge.svg)](https://github.com/tabstack/tabs-python/actions) -[![codecov](https://codecov.io/gh/tabstack/tabs-python/branch/main/graph/badge.svg)](https://codecov.io/gh/tabstack/tabs-python) +[![Tests](https://github.com/Mozilla-Ocho/tabstack-python/workflows/Tests/badge.svg)](https://github.com/Mozilla-Ocho/tabstack-python/actions) +[![codecov](https://codecov.io/gh/Mozilla-Ocho/tabstack-python/branch/main/graph/badge.svg)](https://codecov.io/gh/Mozilla-Ocho/tabstack-python) Python SDK for [TABStack AI](https://tabstack.ai) - Extract, Generate, and Automate web content using AI. @@ -48,8 +48,8 @@ pipenv install tabstack ### From Source ```bash -git clone https://github.com/tabstack/tabs-python.git -cd tabs-python +git clone https://github.com/Mozilla-Ocho/tabstack-python.git +cd tabstack-python pip install -e ".[dev]" ``` @@ -440,8 +440,8 @@ asyncio.run(main()) ```bash # Clone the repository -git clone https://github.com/tabstack/tabs-python.git -cd tabs-python +git clone https://github.com/Mozilla-Ocho/tabstack-python.git +cd tabstack-python # Install with development dependencies pip install -e ".[dev]" @@ -520,8 +520,8 @@ Apache License 2.0 - see [LICENSE](LICENSE) for details. - **Homepage**: [https://tabstack.ai](https://tabstack.ai) - **Documentation**: [https://docs.tabstack.ai](https://docs.tabstack.ai) - **PyPI**: [https://pypi.org/project/tabstack/](https://pypi.org/project/tabstack/) -- **Repository**: [https://github.com/tabstack/tabs-python](https://github.com/tabstack/tabs-python) -- **Issues**: [https://github.com/tabstack/tabs-python/issues](https://github.com/tabstack/tabs-python/issues) +- **Repository**: [https://github.com/Mozilla-Ocho/tabstack-python](https://github.com/Mozilla-Ocho/tabstack-python) +- **Issues**: [https://github.com/Mozilla-Ocho/tabstack-python/issues](https://github.com/Mozilla-Ocho/tabstack-python/issues) ## Support diff --git a/pyproject.toml b/pyproject.toml index aceebf8..fc531cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,8 +46,8 @@ dev = [ [project.urls] Homepage = "https://tabstack.ai" Documentation = "https://docs.tabstack.ai" -Repository = "https://github.com/tabstack/tabs-python" -"Bug Tracker" = "https://github.com/tabstack/tabs-python/issues" +Repository = "https://github.com/Mozilla-Ocho/tabstack-python" +"Bug Tracker" = "https://github.com/Mozilla-Ocho/tabstack-python/issues" [tool.setuptools.packages.find] where = ["."] diff --git a/setup.cfg b/setup.cfg index 680aed1..64ce4b8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ version = 1.0.0 description = Python SDK for TABStack AI - Extract, Generate, and Automate web content long_description = file: README.md long_description_content_type = text/markdown -url = https://github.com/tabstack/tabs-python +url = https://github.com/Mozilla-Ocho/tabstack-python author = TABStack author_email = support@tabstack.ai license = MIT diff --git a/setup.py b/setup.py index fe61846..1e1a11f 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ description="Python SDK for TABStack AI - Extract, Generate, and Automate web content", long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/tabstack/tabs-python", + url="https://github.com/Mozilla-Ocho/tabstack-python", packages=find_packages(exclude=["tests", "tests.*"]), classifiers=[ "Development Status :: 5 - Production/Stable", @@ -49,7 +49,7 @@ keywords="web-scraping ai automation data-extraction web-automation", project_urls={ "Documentation": "https://docs.tabstack.ai", - "Bug Tracker": "https://github.com/tabstack/tabs-python/issues", - "Source Code": "https://github.com/tabstack/tabs-python", + "Bug Tracker": "https://github.com/Mozilla-Ocho/tabstack-python/issues", + "Source Code": "https://github.com/Mozilla-Ocho/tabstack-python", }, )