Skip to content

Commit 7ea1d52

Browse files
GeneAIclaude
authored andcommitted
release: Prepare v1.6.8
Fix package distribution to exclude website and deployment configs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 19b54ae commit 7ea1d52

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to the Empathy Framework will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.6.8] - 2025-11-21
9+
10+
### Fixed
11+
- **Package Distribution**: Excluded website directory and deployment configs from PyPI package
12+
- Added `prune website` to MANIFEST.in to exclude entire website folder
13+
- Excluded `backend/`, `nixpacks.toml`, `org-ruleset-*.json`, deployment configs
14+
- Excluded working/planning markdown files (badges reminders, outreach emails, etc.)
15+
- Package size reduced, only framework code distributed
16+
817
## [1.6.7] - 2025-11-21
918

1019
### Fixed

MANIFEST.in

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,26 @@ recursive-include docs *.md *.rst *.txt
2727
# Include examples
2828
recursive-include examples *.py *.md *.yml *.yaml
2929

30+
# Exclude website and non-framework content
31+
prune website
32+
prune backend
33+
exclude nixpacks.toml
34+
exclude org-ruleset-*.json
35+
exclude render.yaml
36+
exclude vercel.json
37+
38+
# Exclude working/planning files
39+
exclude BADGES_REMINDER.md
40+
exclude POST_HACKERNEWS_REMINDER.md
41+
exclude SEND_LANGCHAIN_EMAIL.md
42+
exclude HN_ARTICLE_EMPATHY_MEMDOCS.md
43+
exclude OUTREACH_EMAILS.md
44+
exclude TODO_BADGES.md
45+
exclude COMPREHENSIVE_COMPLETION_PLAN.md
46+
exclude COMMERCIAL_READINESS.md
47+
exclude QUALITY_REVIEW.md
48+
exclude COMMERCIAL_ROADMAP.md
49+
3050
# Exclude unnecessary files
3151
global-exclude *.pyc
3252
global-exclude *.pyo

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "empathy-framework"
7-
version = "1.6.7"
7+
version = "1.6.8"
88
description = "A five-level maturity model for AI-human collaboration with anticipatory empathy"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)