pyproject.toml•1.32 kB
[project]
name = "ciqual-mcp"
version = "0.1.2"
description = "MCP server for ANSES Ciqual French food composition database with SQL interface"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Gael Debost", email = "gael@ideagency.fr"}
]
keywords = ["mcp", "ciqual", "anses", "nutrition", "food", "database", "sql"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"fastmcp>=0.1.0",
"lxml>=4.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.urls]
"Homepage" = "https://github.com/zzgael/ciqual-mcp"
"Bug Reports" = "https://github.com/zzgael/ciqual-mcp/issues"
"Source" = "https://github.com/zzgael/ciqual-mcp"
[project.scripts]
ciqual-mcp = "server:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"