-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1.03 KB
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
39
40
[project]
name = "mousetail"
version = "0.1.5"
description = "Standalone MCP server that enables LLMs like Claude to interact with Anki flashcard collections using Anki's Python library"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"anki>=25.9.2",
"mcp>=1.21.0",
"keyring>=25.0.0",
]
authors = [
{ name = "Iain Maitland" }
]
license = { text = "MIT" }
keywords = ["anki", "mcp", "model-context-protocol", "llm", "claude", "flashcards", "spaced-repetition"]
[project.optional-dependencies]
docs = [
"sphinx>=7.0.0",
"furo>=2024.0.0",
"sphinx-autodoc-typehints>=2.0.0",
]
[project.urls]
Homepage = "https://listfold.github.io/mousetail/"
Repository = "https://github.com/listfold/mousetail"
Documentation = "https://listfold.github.io/mousetail/"
Issues = "https://github.com/listfold/mousetail/issues"
[project.scripts]
mousetail = "mousetail.mcp.stdio_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatchling.build.targets.wheel]
packages = ["mousetail"]