pyproject.toml•591 B
[project]
name = "anki-mcp"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "ujisati", email = "98663233+ujisati@users.noreply.github.com" }
]
requires-python = ">=3.11"
dependencies = [
"fastmcp>=2.3.3",
"httpx>=0.28.1",
]
[project.scripts]
anki-mcp = "anki_mcp:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
asyncio_default_fixture_loop_scope = "function"