pyproject.toml•1.59 kB
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlite-mcp"
version = "1.0.0"
description = "HTTP REST API and Python client for SQLite database operations via MCP"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["mcp", "sqlite", "database", "http", "rest-api"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"fastmcp>=0.3.0",
"pydantic>=2.0.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"requests>=2.31.0",
"httpx>=0.25.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.20.0",
"black>=22.0",
"flake8>=4.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/sqlite-mcp"
Documentation = "https://github.com/yourusername/sqlite-mcp/blob/main/README.md"
Repository = "https://github.com/yourusername/sqlite-mcp"
Issues = "https://github.com/yourusername/sqlite-mcp/issues"
[tool.setuptools]
packages = ["sqlite_mcp"]
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 100