Skip to content

Commit e381991

Browse files
fix: Update PyPI package name from empathy-framework to empathy
Package was renamed on PyPI. Install commands now correctly use: - pip install empathy - pip install empathy[full] 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 4baf5c0 commit e381991

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![codecov](https://codecov.io/gh/Smart-AI-Memory/empathy/branch/main/graph/badge.svg)](https://codecov.io/gh/Smart-AI-Memory/empathy)
66
[![License](https://img.shields.io/badge/License-Fair%20Source%200.9-blue.svg)](LICENSE)
7-
[![PyPI Package](https://img.shields.io/badge/PyPI-empathy--framework-blue)](https://pypi.org/project/empathy-framework/)
7+
[![PyPI Package](https://img.shields.io/badge/PyPI-empathy-blue)](https://pypi.org/project/empathy/)
88
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
99
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
1010
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
@@ -16,16 +16,15 @@
1616
## Quick Start
1717

1818
```bash
19-
# Install core framework
20-
pip install empathy-framework
19+
# Install from PyPI
20+
pip install empathy
2121

22-
# Install full framework with all features (recommended)
23-
# Built with Claude Code - created in consultation with Claude Sonnet 4.5
24-
pip install empathy-framework[full]
22+
# Install with all features (recommended)
23+
pip install empathy[full]
2524

2625
# Or install specific components:
27-
pip install empathy-framework[llm] # LLM providers (Anthropic, OpenAI)
28-
pip install empathy-framework[all] # Everything including dev tools
26+
pip install empathy[llm] # LLM providers (Anthropic, OpenAI)
27+
pip install empathy[all] # Everything including dev tools
2928
```
3029

3130
**Development installation:**
@@ -577,7 +576,7 @@ Traditional AI tools analyze code in isolation within a single domain. The Empat
577576

578577
```bash
579578
# Install with MemDocs integration
580-
pip install empathy-framework[full]
579+
pip install empathy[full]
581580

582581
# Run the Level 5 demo
583582
python examples/level_5_transformative/run_full_demo.py

0 commit comments

Comments
 (0)