setup.py•1.55 kB
"""Setup configuration for SQLite MCP package."""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="sqlite-mcp",
version="1.0.0",
author="Your Name",
author_email="your.email@example.com",
description="HTTP REST API and Python client for SQLite database operations via MCP",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/sqlite-mcp",
packages=find_packages(),
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",
],
python_requires=">=3.8",
install_requires=[
"fastmcp>=0.3.0",
"pydantic>=2.0.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"requests>=2.31.0",
"httpx>=0.25.0",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-asyncio>=0.20.0",
"black>=22.0",
"flake8>=4.0",
]
},
entry_points={
"console_scripts": [
"sqlite-mcp=main:main",
]
},
)