forked from runekaagaard/mcp-alchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 973 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
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "mcp-alchemy"
version = "2025.8.15.91819"
description = "A MCP server that connects to your database"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp==2.14.5",
"hatchling>=1.28.0",
"mcp[cli]>=1.26.0",
"pyodbc>=5.3.0",
"sqlalchemy>=2.0.46",
]
authors = [
{ name="Rune Kaagaard" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license-files = ["LICENSE"]
packages = [
{include = "mcp_alchemy"}
]
[project.scripts]
mcp-alchemy = "mcp_alchemy.server:main"
[project.urls]
Homepage = "https://github.com/runekaagaard/mcp-alchemy"
Issues = "https://github.com/runekaagaard/mcp-alchemy/issues"
Disussions = "https://github.com/runekaagaard/mcp-alchemy/discussions"
[build-system]
requires = ["hatchling>=1.28.0"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[dependency-groups]
dev = [
"build>=1.4.0",
"hatchling>=1.28.0",
]