-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (79 loc) · 3.3 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (79 loc) · 3.3 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "puppetmaster-ai"
version = "1.21.1"
description = "Gunicorn-style agent swarms with Redis-like shared memory and artifact stitching. (Imported as `puppetmaster`; published as `puppetmaster-ai` because the bare PyPI name is held by an abandoned 2019 project, name-reassignment pending.)"
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Cary" }]
license = { file = "LICENSE" }
keywords = ["agents", "swarm", "orchestration", "cursor", "llm", "redis", "sqlite"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
]
dependencies = []
[project.optional-dependencies]
# Optional OpenTelemetry tracing. Without these, telemetry is a hard no-op and
# Puppetmaster stays zero-dependency; install only if you want swarm traces.
otel = [
"opentelemetry-sdk>=1.20",
"opentelemetry-exporter-otlp-proto-http>=1.20",
]
# Registering Puppetmaster as an MCP server in Hermes' config.yaml
# (`puppetmaster install-hermes-mcp`) edits the YAML Hermes owns, which needs
# PyYAML. The installer imports it lazily and prints an actionable hint if it's
# missing, so the core package stays zero-dependency for everyone else.
hermes = [
"pyyaml>=5.1",
]
# Phone-friendly dashboard (`dashboard --mobile --qr` / MCP mobile mode). qrcode
# renders the code; Pillow is its PNG backend, which is what lets the pilot embed
# a scannable image inline (without Pillow you still get an ASCII QR). Install
# with `pip install puppetmaster-ai[mobile]`.
mobile = [
"qrcode>=7.0",
"pillow>=9.0",
]
[project.urls]
Homepage = "https://github.com/professorpalmer/Puppetmaster"
Repository = "https://github.com/professorpalmer/Puppetmaster"
Changelog = "https://github.com/professorpalmer/Puppetmaster/blob/main/docs/CHANGELOG.md"
Issues = "https://github.com/professorpalmer/Puppetmaster/issues"
Releases = "https://github.com/professorpalmer/Puppetmaster/releases"
[project.scripts]
puppetmaster = "puppetmaster.cli:main"
puppetmaster-mcp = "puppetmaster.mcp_server:main"
[tool.setuptools.packages.find]
include = ["puppetmaster*"]
exclude = ["node_modules*", "docs*", "examples*", "tests*"]
[tool.setuptools.package-data]
# Ship the Node SDK runner alongside the Python package — the Cursor adapter
# and `models discover` resolve it via Path(__file__).with_name(...), so it
# MUST be in the wheel/sdist or pip-installed Cursor support is broken.
# Ship the bundled Hermes skill too, so `install-hermes-mcp` / `setup` can copy
# it into ~/.hermes/skills (a fresh pip install otherwise has no skill).
# Ship the bundled Hermes auto-/learn plugin the same way, so the installer can
# copy it into ~/.hermes/plugins (a fresh pip install otherwise has no plugin).
puppetmaster = [
"*.mjs",
"skills/**/*.md",
"skills/**/*",
"hermes_plugin/**/*.py",
"hermes_plugin/**/*.yaml",
"hermes_plugin/**/*.md",
"hermes_plugin/**/*",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]