19 lines
379 B
TOML
19 lines
379 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mcp-api"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["mcp>=1.0"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest", "pytest-asyncio", "anyio", "build", "twine"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|