Refactor public API around environments
This commit is contained in:
parent
57dae52cc2
commit
5d5243df23
41 changed files with 1301 additions and 459 deletions
|
|
@ -1,16 +1,33 @@
|
|||
[project]
|
||||
name = "pyro-mcp"
|
||||
version = "0.1.0"
|
||||
description = "MCP tools for ephemeral VM lifecycle management."
|
||||
version = "1.0.0"
|
||||
description = "Curated Linux environments for ephemeral Firecracker-backed VM execution."
|
||||
readme = "README.md"
|
||||
license = { file = "LICENSE" }
|
||||
authors = [
|
||||
{ name = "Thales Maciel", email = "thales@thalesmaciel.com" }
|
||||
]
|
||||
requires-python = ">=3.12"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Software Development :: Testing",
|
||||
"Topic :: System :: Systems Administration",
|
||||
]
|
||||
dependencies = [
|
||||
"mcp>=1.26.0",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://git.thaloco.com/thaloco/pyro-mcp"
|
||||
Repository = "https://git.thaloco.com/thaloco/pyro-mcp"
|
||||
Issues = "https://git.thaloco.com/thaloco/pyro-mcp/issues"
|
||||
|
||||
[project.scripts]
|
||||
pyro = "pyro_mcp.cli:main"
|
||||
|
||||
|
|
@ -22,15 +39,23 @@ build-backend = "hatchling.build"
|
|||
packages = ["src/pyro_mcp"]
|
||||
|
||||
[tool.hatch.build.targets.wheel.force-include]
|
||||
"src/pyro_mcp/runtime_bundle" = "pyro_mcp/runtime_bundle"
|
||||
"src/pyro_mcp/runtime_bundle/NOTICE" = "pyro_mcp/runtime_bundle/NOTICE"
|
||||
"src/pyro_mcp/runtime_bundle/linux-x86_64/bin/firecracker" = "pyro_mcp/runtime_bundle/linux-x86_64/bin/firecracker"
|
||||
"src/pyro_mcp/runtime_bundle/linux-x86_64/bin/jailer" = "pyro_mcp/runtime_bundle/linux-x86_64/bin/jailer"
|
||||
"src/pyro_mcp/runtime_bundle/linux-x86_64/guest/pyro_guest_agent.py" = "pyro_mcp/runtime_bundle/linux-x86_64/guest/pyro_guest_agent.py"
|
||||
"src/pyro_mcp/runtime_bundle/linux-x86_64/manifest.json" = "pyro_mcp/runtime_bundle/linux-x86_64/manifest.json"
|
||||
|
||||
[tool.hatch.build.targets.sdist]
|
||||
include = [
|
||||
"docs/**",
|
||||
"src/pyro_mcp/runtime_bundle/**",
|
||||
"runtime_sources/**",
|
||||
"src/pyro_mcp/**/*.py",
|
||||
"src/pyro_mcp/runtime_bundle/NOTICE",
|
||||
"src/pyro_mcp/runtime_bundle/linux-x86_64/bin/firecracker",
|
||||
"src/pyro_mcp/runtime_bundle/linux-x86_64/bin/jailer",
|
||||
"src/pyro_mcp/runtime_bundle/linux-x86_64/guest/pyro_guest_agent.py",
|
||||
"src/pyro_mcp/runtime_bundle/linux-x86_64/manifest.json",
|
||||
"README.md",
|
||||
"LICENSE",
|
||||
"AGENTS.md",
|
||||
"pyproject.toml",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue