pyproject.toml•2.25 kB
[project]
name = "google-sheets-mcp"
version = "0.1.6"
description = "Your AI Assistant's Gateway to Google Sheets! 25 powerful tools for seamless Google Sheets automation via MCP"
authors = [
{name = "Henil C Alagiya", email = "henilalagiya@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.12.1",
"google-auth>=2.23.0",
"google-auth-oauthlib>=1.0.0",
"google-auth-httplib2>=0.1.0",
"google-api-python-client>=2.100.0",
"pydantic>=2.0.0",
"requests>=2.32.4",
]
keywords = ["mcp", "google-sheets", "ai", "automation", "spreadsheets", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
urls = {Homepage = "https://github.com/henilcalagiya/google-sheets-mcp"}
[project.scripts]
google-sheets-mcp = "gsheet_mcp_server.__main__:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"build>=0.10.0",
"twine>=4.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["gsheet_mcp_server"]
[tool.hatch.build.targets.sdist]
include = [
"gsheet_mcp_server/**/*.py",
"__main__.py",
"README.md",
"LICENSE",
"pyproject.toml",
"uv.lock",
]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[dependency-groups]
dev = [
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"build>=0.10.0",
"twine>=4.0.0",
]