"""Setup configuration for the Simplenote MCP Server package."""
from setuptools import find_packages, setup
setup(
name="simplenote-mcp-server",
version="1.9.0",
description="Simplenote MCP Server for Claude Desktop",
packages=find_packages(),
install_requires=[
"mcp[cli]>=1.10.0",
"simplenote>=2.1.4",
"requests>=2.32.4",
],
entry_points={
"console_scripts": [
"simplenote-mcp-server=simplenote_mcp.server.server:run_main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
python_requires=">=3.10",
)