diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index deafb29..05ea817 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,11 +1,3 @@ ---- -name: Bug Report -about: Report a bug or issue with the KiCad MCP Server -title: "[BUG] " -labels: bug -assignees: '' ---- - ## Bug Description diff --git a/kicad_mcp/__init__.py b/kicad_mcp/__init__.py index 25fc06d..76aad28 100644 --- a/kicad_mcp/__init__.py +++ b/kicad_mcp/__init__.py @@ -9,4 +9,19 @@ __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 +__all__ = [ + # Package metadata + "__version__", + "__author__", + "__description__", + + # Server creation / shutdown helpers + "create_server", + "add_cleanup_handler", + "run_cleanup_handlers", + "shutdown_server", + + # Lifespan / context helpers + "kicad_lifespan", + "KiCadAppContext", +] \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 58e554c..6c8f875 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "kicad-mcp" version = "0.1.0" -authors = [{ name = "Lama Al Rajih", email = "your-email@example.com" }] +authors = [{ name = "Lama Al Rajih" }] description = "Model Context Protocol server for KiCad on Mac, Windows, and Linux" readme = "README.md" requires-python = ">=3.10"