-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
34 lines (30 loc) · 855 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[project]
name = "apple-notes-mcp"
version = "0.1.1"
description = "Read local Apple Notes sqlite database and provide it as a context protocol server for Claude Desktop."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.0",
"mcp>=1.0.0",
"protobuf>=5.29.0",
"python-dotenv>=1.0.1",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
]
[[project.authors]]
name = "Navishkar Rao"
email = "sirmews@gmail.com"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.scripts]
apple-notes-mcp = "apple_notes_mcp:main"
[tool.apple-notes-mcp]
server_name = "apple-notes-mcp"
[project.urls]
Homepage = "https://sirmews.github.io/apple-notes-mcp/"
Issues = "https://github.com/sirmews/apple-notes-mcp/issues"