|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "kicad-mcp" |
| 7 | +version = "0.1.0" |
| 8 | +authors = [ |
| 9 | + { name= "Lama Al Rajih", email= "[email protected]" }, |
| 10 | +] |
| 11 | +description = "Model Context Protocol server for KiCad on Mac, Windows, and Linux" |
| 12 | +readme = "README.md" |
| 13 | +requires-python = ">=3.10" |
| 14 | +classifiers = [ |
| 15 | + "Programming Language :: Python :: 3", |
| 16 | + "Programming Language :: Python :: 3.10", |
| 17 | + "Programming Language :: Python :: 3.11", |
| 18 | + "Programming Language :: Python :: 3.12", |
| 19 | + "License :: OSI Approved :: MIT License", |
| 20 | + "Operating System :: OS Independent", |
| 21 | + "Development Status :: 4 - Beta", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 24 | + "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", |
| 25 | +] |
| 26 | +dependencies = [ |
| 27 | + "mcp[cli]", |
| 28 | + "pandas", |
| 29 | +] |
| 30 | +keywords = ["kicad", "mcp", "model-context-protocol", "eda", "pcb"] |
| 31 | + |
| 32 | +[project.urls] |
| 33 | +"Homepage" = "https://github.com/lamaalrajih/kicad-mcp" |
| 34 | +"Bug Tracker" = "https://github.com/lamaalrajih/kicad-mcp/issues" |
| 35 | +"Documentation" = "https://github.com/lamaalrajih/kicad-mcp#readme" |
| 36 | + |
| 37 | +[project.scripts] |
| 38 | +kicad-mcp = "kicad_mcp.main:main" |
| 39 | + |
| 40 | +[tool.setuptools.packages.find] |
| 41 | +where = ["."] |
| 42 | +include = ["kicad_mcp*"] |
| 43 | +exclude = ["tests*", "docs*"] |
0 commit comments