From d9e65fb8f07d8e45a010ad04b9b403c4e53c0055 Mon Sep 17 00:00:00 2001 From: rcholic Date: Sat, 27 Dec 2025 21:23:30 -0800 Subject: [PATCH] renamed pypi name --- .github/workflows/release.yml | 4 ++-- README.md | 8 +++++++- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f410d90..8d77857 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,11 +72,11 @@ jobs: tag_name: v${{ steps.version.outputs.version }} name: Release v${{ steps.version.outputs.version }} body: | - Release v${{ steps.version.outputs.version }} of sentience-python + Release v${{ steps.version.outputs.version }} of sentienceapi ## Installation ```bash - pip install sentience-python==${{ steps.version.outputs.version }} + pip install sentienceapi==${{ steps.version.outputs.version }} ``` draft: false prerelease: false diff --git a/README.md b/README.md index 593c70c..e0e93d6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ The SDK is open under ELv2; the core semantic geometry and reliability logic run ## Installation ```bash -pip install -e . +# Install from PyPI +pip install sentienceapi # Install Playwright browsers (required) playwright install chromium @@ -16,6 +17,11 @@ pip install anthropic # For Claude models pip install transformers torch # For local LLMs ``` +**For local development:** +```bash +pip install -e . +``` + ## Quick Start: Choose Your Abstraction Level Sentience SDK offers **three abstraction levels** - use what fits your needs: diff --git a/pyproject.toml b/pyproject.toml index 49e132a..8884e59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] -name = "sentience-python" +name = "sentienceapi" version = "0.90.0" description = "Python SDK for Sentience AI Agent Browser Automation" readme = "README.md"