pyproject.toml•1.24 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cataloger-mcp-server"
version = "0.1.4"
description = "A Model Context Protocol (MCP) server for Library of Congress Subject Headings and Name Authorities."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{name = "KL Tang", email = "tklpsu@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"mcp[cli]>=1.6.0",
"requests>=2.32.3",
"uvicorn>=0.27.0",
]
[project.urls]
"Homepage" = "https://github.com/kltng/cataloger-mcp-server"
"Bug Tracker" = "https://github.com/kltng/cataloger-mcp-server/issues"
"Documentation" = "https://github.com/kltng/cataloger-mcp-server#readme"
[project.scripts]
cataloger-mcp-server = "cataloger_mcp_server.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/cataloger_mcp_server"]
[tool.pytest.ini_options]
pythonpath = [
"src",
]