pyproject.toml•1.93 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sp-database-mcp"
version = "0.1.2"
description = "A Model Context Protocol server for database schema information"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Alex Liu", email = "drowning524@gmail.com" }]
keywords = ["mcp", "database", "schema", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = ["mcp>=1.4.1", "sqlalchemy>=2.0.0", "requests>=2.31.0"]
[project.optional-dependencies]
mysql = ["pymysql>=1.1.0"]
postgresql = ["psycopg2-binary>=2.9.0"]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/alexliu/sp-database-mcp"
Repository = "https://github.com/alexliu/sp-database-mcp"
Issues = "https://github.com/alexliu/sp-database-mcp/issues"
Documentation = "https://github.com/alexliu/sp-database-mcp#readme"
[project.scripts]
sp-database-mcp = "sp_database_mcp.server:cli_main"
sp-database-mcp-simple = "sp_database_mcp.simple_server:cli_main"
[tool.hatch.build.targets.wheel]
packages = ["sp_database_mcp"]
[tool.hatch.build.targets.sdist]
include = ["/sp_database_mcp", "/README.md", "/LICENSE"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"build>=1.2.2.post1",
"twine>=6.1.0",
]
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true