feat: Week 1 complete - Linux support + IPC API prep
🎉 Major v2.0 rebuild kickoff - Week 1 accomplished! ## Highlights ### Cross-Platform Support 🌍 - ✅ Linux primary platform (Ubuntu/Debian tested) - ✅ Windows fully supported - ✅ macOS experimental support - ✅ Platform-agnostic path handling (XDG spec) - ✅ Auto-detection of KiCAD installation ### Infrastructure 🏗️ - ✅ GitHub Actions CI/CD pipeline - ✅ Pytest framework with 20+ tests - ✅ Pre-commit hooks (Black, MyPy, ESLint) - ✅ Automated Linux installation script - ✅ Enhanced npm scripts ### IPC API Migration Prep 🚀 - ✅ Comprehensive migration plan (30 pages) - ✅ Backend abstraction layer (800+ lines) - ✅ Factory pattern with auto-detection - ✅ SWIG backward compatibility wrapper - ✅ IPC backend skeleton ready ### Documentation 📚 - ✅ Updated README (Linux installation) - ✅ CONTRIBUTING.md guide - ✅ Linux compatibility audit - ✅ IPC API migration plan - ✅ Session summaries - ✅ Platform-specific config templates ## Files Changed - 27 files created - ~3,000 lines of code/docs - 8 comprehensive documentation pages - 20+ unit tests - 5 abstraction layer modules ## Next Steps - Week 2: IPC API migration (project.py → component.py → routing.py) - Migrate from deprecated SWIG to official IPC API - JLCPCB/Digikey integration prep 🤖 Generated with Claude Code https://claude.com/claude-code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
29
requirements-dev.txt
Normal file
29
requirements-dev.txt
Normal file
@@ -0,0 +1,29 @@
|
||||
# KiCAD MCP Server - Development Dependencies
|
||||
# Testing, linting, and development tools
|
||||
|
||||
# Include production dependencies
|
||||
-r requirements.txt
|
||||
|
||||
# Testing framework
|
||||
pytest>=7.4.0
|
||||
pytest-cov>=4.1.0
|
||||
pytest-asyncio>=0.21.0
|
||||
pytest-mock>=3.11.0
|
||||
|
||||
# Code quality
|
||||
black>=23.7.0
|
||||
mypy>=1.5.0
|
||||
pylint>=2.17.0
|
||||
flake8>=6.1.0
|
||||
isort>=5.12.0
|
||||
|
||||
# Type stubs
|
||||
types-requests>=2.31.0
|
||||
types-Pillow>=10.0.0
|
||||
|
||||
# Pre-commit hooks
|
||||
pre-commit>=3.3.0
|
||||
|
||||
# Development utilities
|
||||
ipython>=8.14.0
|
||||
ipdb>=0.13.13
|
||||
Reference in New Issue
Block a user