-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 774 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 774 Bytes
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
[project]
name = "bazzite-mcp"
version = "0.1.0"
description = "MCP server providing AI-native awareness and control of Bazzite OS"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Roland", email = "rmargve@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"fastmcp>=3.1.0",
"httpx>=0.28.1",
"vdf>=3.4",
]
[project.urls]
Homepage = "https://github.com/rolandmarg/bazzite-mcp"
Repository = "https://github.com/rolandmarg/bazzite-mcp"
Issues = "https://github.com/rolandmarg/bazzite-mcp/issues"
[project.scripts]
bazzite-mcp = "bazzite_mcp.__main__:main"
bazzite-mcp-cleanup = "bazzite_mcp.cleanup:main"
[build-system]
requires = ["uv_build>=0.10.7,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]