13 lines
318 B
Python
13 lines
318 B
Python
"""
|
|
KiCad MCP Server - A Model Context Protocol server for KiCad.
|
|
"""
|
|
from .server import *
|
|
from .config import *
|
|
from .context import *
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "Lama Al Rajih"
|
|
__description__ = "Model Context Protocol server for KiCad on Mac, Windows, and Linux"
|
|
|
|
__all__ = [] # TODO: need to finish this
|