setup.py•1.58 kB
"""Setup configuration for Gemini MCP Server"""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="gemini-mcp-server",
version="3.0.0",
author="lbds137",
author_email="",
description="MCP server for Claude-Gemini collaboration",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lbds137/gemini-mcp-server",
package_dir={"": "src"},
packages=find_packages(where="src"),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"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",
],
python_requires=">=3.9",
install_requires=[
"google-generativeai>=0.3.0",
"python-dotenv>=0.19.0",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0",
"black>=23.0",
"flake8>=6.0",
"mypy>=1.0",
"isort>=5.12.0",
"pre-commit>=3.5.0",
],
},
entry_points={
"console_scripts": [
"gemini-mcp-server=gemini_mcp.main:main",
],
},
)