pyproject.toml•1.47 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wlater-mcp"
version = "0.2.0"
description = "Connect your AI assistant to Google Keep. Search, read, and manage your notes and lists through natural conversation."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{name = "briansbrian"},
]
keywords = ["mcp", "google-keep", "ai-assistant", "model-context-protocol"]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
]
dependencies = [
"fastmcp>=0.1.0",
"gkeepapi>=0.15.0",
"keyring>=24.0.0",
"gpsoauth>=1.0.0",
]
[project.optional-dependencies]
selenium = ["selenium>=4.0.0"]
dev = [
"pytest>=7.0.0",
"pytest-mock>=3.0.0",
"black>=23.0.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/briansbrian/wlater-McpServer"
Repository = "https://github.com/briansbrian/wlater-McpServer"
Issues = "https://github.com/briansbrian/wlater-McpServer/issues"
[project.scripts]
wlater-setup = "wlater_mcp.setup:run_setup"
[tool.setuptools]
packages = ["wlater_mcp"]
[tool.setuptools.package-data]
wlater_mcp = ["*.py"]