update init and remove email placeholder from pyproject.toml

This commit is contained in:
Lama 2025-07-18 01:57:04 -04:00
parent fb4e9ecfb0
commit 2b425d458d
3 changed files with 17 additions and 10 deletions

View File

@ -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 ## Bug Description
<!-- A clear and concise description of the bug --> <!-- A clear and concise description of the bug -->

View File

@ -9,4 +9,19 @@ __version__ = "0.1.0"
__author__ = "Lama Al Rajih" __author__ = "Lama Al Rajih"
__description__ = "Model Context Protocol server for KiCad on Mac, Windows, and Linux" __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",
]

View File

@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "kicad-mcp" name = "kicad-mcp"
version = "0.1.0" 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" description = "Model Context Protocol server for KiCad on Mac, Windows, and Linux"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"