57 lines
1.5 KiB
TOML
57 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["hatchling>=1.25"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "openherbarium-mcp"
|
|
version = "0.1.0"
|
|
description = "A Model Context Protocol server providing structured, sourced botanical knowledge from open data sources."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "MIT" }
|
|
authors = [
|
|
{ name = "OpenHerbarium MCP contributors" }
|
|
]
|
|
keywords = ["mcp", "botany", "botanical", "plants", "gbif", "wikimedia", "kew"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Scientific/Engineering :: Bio-Informatics",
|
|
]
|
|
dependencies = [
|
|
"httpx>=0.27",
|
|
"mcp>=2.0.0",
|
|
"pydantic>=2.7",
|
|
"python-dotenv>=1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.23",
|
|
]
|
|
|
|
[project.scripts]
|
|
openherbarium-mcp = "openherbarium_mcp.server:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.home-deneuville.fr/Edern/openherbarium-mcp"
|
|
Repository = "https://git.home-deneuville.fr/Edern/openherbarium-mcp"
|
|
Issues = "https://git.home-deneuville.fr/Edern/openherbarium-mcp/issues"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/openherbarium_mcp"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
src = ["src", "tests"]
|