pyproject.toml•1.11 kB
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bc-calculator-mcp"
version = "1.0.0"
description = "MCP server for BC (Basic Calculator) with arbitrary precision arithmetic"
readme = "README_PYTHON.md"
requires-python = ">=3.10"
keywords = ["mcp", "calculator", "bc", "math", "arbitrary-precision", "model-context-protocol"]
license = {text = "MIT"}
dependencies = [
"mcp>=0.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"mypy>=1.5.0",
"ruff>=0.1.0",
]
[project.scripts]
bc-calculator-py = "bc_calculator_mcp.__main__:main"
[tool.setuptools]
package-dir = {"" = "src/python"}
[tool.setuptools.packages.find]
where = ["src/python"]
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "F", "I", "N", "W"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]