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.
44 lines
423 B
Plaintext
44 lines
423 B
Plaintext
```gitignore
|
|
# Python compiled files
|
|
*.pyc
|
|
__pycache__/
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
*.env.*
|
|
|
|
# Editor/IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Dependencies
|
|
.venv/
|
|
venv/
|
|
node_modules/
|
|
|
|
# Coverage reports
|
|
coverage/
|
|
htmlcov/
|
|
.coverage
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
target/
|
|
|
|
# Package management
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.hypothesis/
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
``` |