-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (50 loc) · 1.69 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mdbp"
version = "0.3.4.9"
description = "Model Database Protocol — intent-based, secure database access for LLMs with schema validation, policy engine, data masking, and MCP server support"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Doruk", email = "dorukyelken@gmail.com"},
]
keywords = [
"ai", "llm", "database", "mcp", "intent", "sqlalchemy", "protocol",
"sql-safety", "policy-engine", "access-control", "data-masking",
"tool-use", "text-to-sql", "llm-database", "mcp-server",
"sql-injection-prevention", "rbac", "audit-logging",
"structured-query", "ai-database", "hallucination-protection",
"tenant-isolation", "bigquery", "postgresql", "mysql", "sqlite",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"pydantic>=2.0",
"sqlalchemy>=2.0",
"mcp>=1.0",
]
[project.urls]
Homepage = "https://github.com/DorukYelken/MDBP"
Repository = "https://github.com/DorukYelken/MDBP"
Documentation = "https://github.com/DorukYelken/MDBP/tree/main/docs"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[project.scripts]
mdbp-server = "mdbp.transport.server:main"