Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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]"
```

Expand Down Expand Up @@ -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]"
Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ["."]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
},
)
Loading