pyproject.toml•897 B
[project]
name = "pubchem-mcp-server"
version = "0.1.0"
description = "PubChem Chemical Safety MCP Server"
authors = [
{name = "ChemSafe Team", email = "liueic@ciallo.cv"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"aiohttp>=3.9.0",
"pydantic>=2.5.0",
"httpx>=0.25.0",
"asyncio-throttle>=1.0.2",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.7.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pubchem_mcp"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true