This commit addresses several critical issues and improvements: 🔧 Critical Fixes: - Fixed conversation history not being included when using continuation_id in AI-to-AI conversations - Fixed test mock targeting issues preventing proper conversation memory validation - Fixed Docker debug logging functionality with Gemini tools 🐛 Bug Fixes: - Docker compose configuration for proper container command execution - Test mock import targeting from utils.conversation_memory.* to tools.base.* - Version bump to 3.1.0 reflecting significant improvements 🚀 Improvements: - Enhanced Docker environment configuration with comprehensive logging setup - Added cross-tool continuation documentation and examples in README - Improved error handling and validation across all tools - Better logging configuration with LOG_LEVEL environment variable support - Enhanced conversation memory system documentation 🧪 Testing: - Added comprehensive conversation history bug fix tests - Added cross-tool continuation functionality tests - All 132 tests now pass with proper conversation history validation - Improved test coverage for AI-to-AI conversation threading ✨ Code Quality: - Applied black, isort, and ruff formatting across entire codebase - Enhanced inline documentation for conversation memory system - Cleaned up temporary files and improved repository hygiene - Better test descriptions and coverage for critical functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
"""
|
|
Setup configuration for Gemini MCP Server
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
from setuptools import setup
|
|
|
|
# Read README for long description
|
|
readme_path = Path(__file__).parent / "README.md"
|
|
long_description = ""
|
|
if readme_path.exists():
|
|
long_description = readme_path.read_text(encoding="utf-8")
|
|
|
|
setup(
|
|
name="gemini-mcp-server",
|
|
version="3.1.0",
|
|
description="Model Context Protocol server for Google Gemini",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="Fahad Gilani",
|
|
python_requires=">=3.10",
|
|
py_modules=["gemini_server"],
|
|
install_requires=[
|
|
"mcp>=1.0.0",
|
|
"google-genai>=1.19.0",
|
|
"pydantic>=2.0.0",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=7.4.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"pytest-mock>=3.11.0",
|
|
]
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"gemini-mcp-server=gemini_server:main",
|
|
],
|
|
},
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
],
|
|
)
|