Bootstrap pyro_mcp v0.0.1 with MCP static tool and Ollama demo
This commit is contained in:
commit
11d6f4bcb4
18 changed files with 1945 additions and 0 deletions
47
pyproject.toml
Normal file
47
pyproject.toml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
[project]
|
||||
name = "pyro-mcp"
|
||||
version = "0.0.1"
|
||||
description = "A minimal MCP-ready Python tool library."
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
{ name = "Thales Maciel", email = "thales@thalesmaciel.com" }
|
||||
]
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"mcp>=1.26.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
pyro-mcp-server = "pyro_mcp.server:main"
|
||||
pyro-mcp-demo = "pyro_mcp.demo:main"
|
||||
pyro-mcp-ollama-demo = "pyro_mcp.ollama_demo:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"mypy>=1.19.1",
|
||||
"pre-commit>=4.5.1",
|
||||
"pytest>=9.0.2",
|
||||
"pytest-cov>=7.0.0",
|
||||
"ruff>=0.15.4",
|
||||
]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
testpaths = ["tests"]
|
||||
addopts = "--cov=pyro_mcp --cov-report=term-missing --cov-fail-under=90"
|
||||
|
||||
[tool.ruff]
|
||||
target-version = "py312"
|
||||
line-length = 100
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = ["E", "F", "I", "B"]
|
||||
|
||||
[tool.mypy]
|
||||
python_version = "3.12"
|
||||
strict = true
|
||||
warn_unused_configs = true
|
||||
files = ["src", "tests", "examples"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue