chore: bump version to 4.1.9 and add __init__.py to all packages

- Bump version from 4.1.8 to 4.1.9 in all relevant files
- Add __init__.py to all directories in src/superclaude/ and plugins/superclaude/
- Update pyproject.toml to include plugins/superclaude package
- Update MANIFEST.in to include plugin resources
- Ensure proper Python package structure with 27 __init__.py files

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
mithun50
2025-11-14 14:15:44 +01:00
parent 18c0e4e127
commit fd8c67f6f0
30 changed files with 47 additions and 29 deletions

View File

@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "superclaude"
version = "4.1.8"
version = "4.1.9"
description = "AI-enhanced development framework for Claude Code - pytest plugin with optional skills"
readme = "README.md"
license = {text = "MIT"}
@@ -67,8 +67,9 @@ superclaude = "superclaude.cli.main:main"
superclaude = "superclaude.pytest_plugin"
[tool.hatch.build.targets.wheel]
packages = ["src/superclaude"]
packages = ["src/superclaude", "plugins/superclaude"]
include = [
"src/superclaude/**/*.py",
"src/superclaude/skills/**/*.md",
"src/superclaude/skills/**/*.ts",
"src/superclaude/skills/**/*.json",
@@ -82,11 +83,17 @@ include = [
"src/superclaude/hooks/**/*.json",
"src/superclaude/scripts/**/*.py",
"src/superclaude/scripts/**/*.sh",
"plugins/superclaude/**/*.py",
"plugins/superclaude/**/*.md",
"plugins/superclaude/**/*.ts",
"plugins/superclaude/**/*.json",
"plugins/superclaude/**/*.sh",
]
[tool.hatch.build.targets.sdist]
include = [
"src/",
"plugins/",
"tests/",
"README.md",
"LICENSE",