pyproject.tomlā¢1.6 kB
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "postgresql-mcp-server"
version = "1.0.0"
description = "A Model Context Protocol (MCP) server for PostgreSQL databases"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=0.5.0",
"asyncpg>=0.29.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"click>=8.0.0",
"python-dotenv>=1.0.0",
"sqlparse>=0.4.4",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"black>=21.0.0",
"flake8>=3.8.0",
"mypy>=0.800",
]
[project.scripts]
postgresql-mcp-server = "main:main"
[project.urls]
"Homepage" = "https://github.com/yourusername/postgresql-mcp-server"
"Bug Reports" = "https://github.com/yourusername/postgresql-mcp-server/issues"
"Source" = "https://github.com/yourusername/postgresql-mcp-server"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true