forked from BeingOK3/iCalendar-main
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·38 lines (31 loc) · 770 Bytes
/
pyproject.toml
File metadata and controls
executable file
·38 lines (31 loc) · 770 Bytes
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
35
36
37
38
[project]
name = "mcp-ical"
version = "0.1.0"
description = "A Model Context Protocol server providing tools for CRUD operations for the mac-os calendar"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"loguru>=0.7.3",
"mcp[cli]>=1.2.1",
"caldav>=1.15",
"requests>=2.31.0",
"vobject>=0.9.6",
"fastapi>=0.111.0",
"uvicorn>=0.34.0",
"httpx>=0.27.0",
"jinja2>=3.1.0",
]
[dependency-groups]
dev = ["pytest>=8.3.4", "pytest-mock>=3.14.0", "pytest-random-order>=1.1.1"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py312"
[project.scripts]
mcp-ical = "mcp_ical.server:main"
web-client = "web_client.app:main"