- Add proper cross-platform path handling with Path.resolve() - Fix file encoding issues by explicitly using UTF-8 - Correct mock paths to use google.generativeai instead of gemini_server.genai - Create setup.py for proper package installation in CI - Add conftest.py with Windows asyncio compatibility - Update CI workflow to install package with pip install -e . - Add import tests to verify package installation - Set PYTHONPATH in test environment - Simplify import mechanism in tests These changes ensure tests pass consistently across Windows, Ubuntu, and macOS platforms. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
"""
|
|
Setup configuration for Gemini MCP Server
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
from pathlib import Path
|
|
|
|
# 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="1.0.0",
|
|
description="Model Context Protocol server for Google Gemini",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="Fahad Yousaf",
|
|
python_requires=">=3.8",
|
|
py_modules=["gemini_server"],
|
|
install_requires=[
|
|
"mcp>=1.0.0",
|
|
"google-generativeai>=0.8.0",
|
|
"python-dotenv>=1.0.0",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=7.4.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"pytest-cov>=4.1.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.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
],
|
|
) |