-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-arduino-server"
version = "0.1.5" # Start with an initial version
authors = [
{ name="Volt23", email="ernesto.volt@me.com" },
]
description = "MCP Server for Arduino CLI providing sketch, board, library, and file management tools."
readme = "README.md"
requires-python = ">=3.10" # Based on Pathlib, f-strings, asyncio usage
license = { file="LICENSE" } # Or use text = "MIT License", etc.
keywords = ["mcp", "model context protocol", "arduino", "arduino-cli", "llm", "ai"]
classifiers = [
"Development Status :: 3 - Alpha", # Or Beta/Production/Stable
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License", # Choose your license
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
# Runtime dependencies
dependencies = [
"mcp[cli]", # Specify a minimum MCP version if needed
"thefuzz[speedup]>=0.20.0", # Specify minimum thefuzz version
"wireviz", # Added WireViz dependency
"openai", # For GPT-4.1 API calls
# Add any other direct dependencies your script might implicitly use
]
# Optional: Define command-line scripts
[project.scripts]
mcp-arduino-server = "mcp_arduino_server.server:main"
# Optional: Links for PyPI
[project.urls]
Homepage = "https://github.com/Volt23/mcp-arduino-server" # Replace with your repo URL
Repository = "https://github.com/Volt23/mcp-arduino-server"
# Bug Tracker = "https://github.com/Volt23/mcp-arduino-server/issues"