-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.29 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
[project]
name = "metabase-mcp-server"
version = "0.1.0"
description = "A Metabase MCP (Model Context Protocol) server for integrating Metabase with AI assistants"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Ranjan Bhagat", email = "ranjan@codewalnut.com"}
]
keywords = ["metabase", "mcp", "model-context-protocol", "ai", "analytics", "dashboard"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"aiohttp>=3.8.6",
"yarl>=1.6.3",
"python-dotenv>=1.0.0",
"fastmcp>=2.11.1",
]
[project.urls]
Homepage = "https://github.com/CW-Codewalnut/metabase-mcp-server"
Repository = "https://github.com/CW-Codewalnut/metabase-mcp-server"
Issues = "https://github.com/CW-Codewalnut/metabase-mcp-server/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]