pyproject.toml•861 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-notes-connector"
version = "0.1.0"
description = "Model Context Protocol server for Evernote API integration"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=0.9.0",
"evernote3>=1.25.14",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.scripts]
mcp-notes-connector = "mcp_notes_connector.server:main"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]