[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kintone-mcp-server-python3"
version = "0.1.0"
description = "MCP server for kintone REST API integration"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=0.1.0",
"requests>=2.31.0",
"pydantic>=2.5.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"types-requests>=2.31.0",
]
[project.scripts]
kintone-mcp-server-python3 = "kintone_mcp_server_python3.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/kintone_mcp_server_python3"]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]