Skip to content

Commit 2b425d4

Browse files
committed
update init and remove email placeholder from pyproject.toml
1 parent fb4e9ec commit 2b425d4

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
---
2-
name: Bug Report
3-
about: Report a bug or issue with the KiCad MCP Server
4-
title: "[BUG] "
5-
labels: bug
6-
assignees: ''
7-
---
8-
91
## Bug Description
102
<!-- A clear and concise description of the bug -->
113

kicad_mcp/__init__.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,19 @@
99
__author__ = "Lama Al Rajih"
1010
__description__ = "Model Context Protocol server for KiCad on Mac, Windows, and Linux"
1111

12-
__all__ = [] # TODO: need to finish this
12+
__all__ = [
13+
# Package metadata
14+
"__version__",
15+
"__author__",
16+
"__description__",
17+
18+
# Server creation / shutdown helpers
19+
"create_server",
20+
"add_cleanup_handler",
21+
"run_cleanup_handlers",
22+
"shutdown_server",
23+
24+
# Lifespan / context helpers
25+
"kicad_lifespan",
26+
"KiCadAppContext",
27+
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "kicad-mcp"
77
version = "0.1.0"
8-
authors = [{ name = "Lama Al Rajih", email = "[email protected]" }]
8+
authors = [{ name = "Lama Al Rajih" }]
99
description = "Model Context Protocol server for KiCad on Mac, Windows, and Linux"
1010
readme = "README.md"
1111
requires-python = ">=3.10"

0 commit comments

Comments
 (0)