This repository was archived by the owner on Apr 18, 2026. It is now read-only.
forked from verygoodplugins/streamdeck-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.89 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
[project]
name = "streamdeck-mcp"
version = "0.2.0"
description = "MCP server for Stream Deck profile writing with legacy USB control"
readme = "README.md"
license = "MIT"
authors = [
{name = "Jack Arturo"}
]
requires-python = ">=3.11"
keywords = ["mcp", "streamdeck", "elgato", "profiles", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp[cli]>=1.6.0",
"streamdeck>=0.9.0",
"pillow>=10.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
streamdeck-mcp = "profile_server:run"
streamdeck-mcp-usb = "server:run"
[project.urls]
Homepage = "https://github.com/verygoodplugins/streamdeck-mcp"
Repository = "https://github.com/verygoodplugins/streamdeck-mcp"
Issues = "https://github.com/verygoodplugins/streamdeck-mcp/issues"
[tool.mcp]
name = "io.github.verygoodplugins/streamdeck-mcp"
[tool.setuptools]
py-modules = ["profile_manager", "profile_server", "server", "mdi_icons"]
packages = ["streamdeck_assets", "streamdeck_plugin"]
[tool.setuptools.package-data]
streamdeck_assets = ["*.ttf", "*.json", "MDI-LICENSE"]
streamdeck_plugin = [
"io.github.verygoodplugins.streamdeck-mcp.sdPlugin/manifest.json",
"io.github.verygoodplugins.streamdeck-mcp.sdPlugin/plugin.html",
"io.github.verygoodplugins.streamdeck-mcp.sdPlugin/plugin.js",
"io.github.verygoodplugins.streamdeck-mcp.sdPlugin/Images/*.png",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]