pyproject.toml•1.06 kB
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kv-extractor-mcp-server"
version = "0.3.2"
description = "Flexible Key-Value Extraction MCP Server using LLM and pydantic-ai"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "KunihiroS", email = "kunihiros@gmail.com" }
]
license = { text = "GPL-3.0-or-later" }
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Framework :: FastAPI"
]
dependencies = [
"fastmcp>=0.2.0",
"pydantic-ai>=0.1.4",
"pydantic>=2.0",
"PyYAML",
"toml",
"spacy>=3.7.0",
"langdetect",
"click>=8.0.0",
]
[tool.setuptools]
packages = ["kv_extractor_mcp_server"]
package-dir = {"" = "src"}
[project.scripts]
kv-extractor-mcp-server = "kv_extractor_mcp_server.server:initialize_and_run_server"