Title: Update license confirmation and enhance project documentation

Key features implemented:
- Updated README.md to prominently display MIT license badge and include full license text in expandable section
- Enhanced .gitignore with comprehensive file patterns for Python, dependencies, logs, and build artifacts
- Added detailed plugin manifest example showing license declaration in plugin configuration
- Included license information in plugin development documentation section

The updates provide clear license visibility and improved development workflow configuration.
This commit is contained in:
qwen.ai[bot]
2026-04-25 08:14:10 +00:00
parent 9322dc857f
commit d7978349ed
103 changed files with 619 additions and 94 deletions

58
.gitignore vendored
View File

@@ -1,42 +1,44 @@
```
# Python
__pycache__/
```gitignore
# Python compiled files
*.pyc
*.pyo
*.pyd
*.py~
__pycache__/
# Logs and temporary files
*.log
*.tmp
# Environment files
.env
.env.local
*.env.*
# Editor/IDE files
.vscode/
.idea/
*.swp
*.swo
# Dependencies
.venv/
venv/
.env
.env.local
.env.*
# Logs
*.log
# OS
.DS_Store
Thumbs.db
# Backup files
*~
*.bak
*.swp
*.swo
node_modules/
# Coverage reports
coverage/
htmlcov/
.coverage
# Testing
.pytest_cache/
.mypy_cache/
# Distribution / packaging
# Build artifacts
dist/
build/
*.egg-info/
target/
# Package management
.mypy_cache/
.pytest_cache/
.hypothesis/
# System files
.DS_Store
Thumbs.db
```