|
| 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 = [{ name = "Lama Al Rajih" }] |
| 9 | +description = "Model Context Protocol server for KiCad on Mac, Windows, and Linux" |
| 10 | +license = { text = "MIT" } |
| 11 | +readme = "README.md" |
| 12 | +requires-python = ">=3.10" |
| 13 | +classifiers = [ |
| 14 | + "Programming Language :: Python :: 3", |
| 15 | + "Programming Language :: Python :: 3.10", |
| 16 | + "Programming Language :: Python :: 3.11", |
| 17 | + "Programming Language :: Python :: 3.12", |
| 18 | + "License :: OSI Approved :: MIT License", |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Development Status :: 4 - Beta", |
| 21 | + "Intended Audience :: Developers", |
| 22 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 23 | + "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", |
| 24 | +] |
| 25 | +dependencies = ["mcp[cli]>=1.11.0", "pandas>=2.3.1", "pytest>=8.4.1"] |
| 26 | + |
| 27 | +[project.urls] |
| 28 | +"Homepage" = "https://github.com/lamaalrajih/kicad-mcp" |
| 29 | +"Bug Tracker" = "https://github.com/lamaalrajih/kicad-mcp/issues" |
| 30 | +"Documentation" = "https://github.com/lamaalrajih/kicad-mcp#readme" |
| 31 | + |
| 32 | +[project.scripts] |
| 33 | +kicad-mcp = "kicad_mcp.main:main" |
| 34 | + |
| 35 | +[tool.setuptools.packages.find] |
| 36 | +where = ["."] |
| 37 | +include = ["kicad_mcp*"] |
| 38 | +exclude = ["tests*", "docs*"] |
| 39 | + |
| 40 | +[tool.setuptools.package-data] |
| 41 | +"kicad_mcp" = ["prompts/*.txt", "resources/**/*.json"] |
0 commit comments