[project]
name = "codeocean-mcp-server"
version = "0.7.2"
authors = [{ name = "Code Ocean", email = "dev@codeocean.com" }]
description = "Code Ocean MCP Server"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"codeocean>=0.12.0,<0.13.0",
"mcp>=1.12.0,<1.13.0",
]
license = "MIT"
[dependency-groups]
dev = [
"boto3>=1.42.17",
"deepdiff>=8.6.1",
"hatch>=1.16.2",
"mcp-python-client>=0.1.9",
"pytest>=9.0.2",
"ruff>=0.14.10",
]
[project.urls]
Homepage = "https://github.com/codeocean/codeocean-mcp-server"
Issues = "https://github.com/codeocean/codeocean-mcp-server/issues"
Changelog = "https://github.com/codeocean/codeocean-mcp-server/blob/main/CHANGELOG.md"
[project.scripts]
codeocean-mcp-server = "codeocean_mcp_server.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = ["/.circleci"]
[tool.hatch.build.targets.wheel]
packages = ["src/codeocean_mcp_server"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.envs.default.scripts]
test = "pytest"
[[tool.hatch.envs.test.matrix]]
python = ["3.10", "3.11", "3.12", "3.13"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["C", "D", "E", "F", "I", "W"]
ignore = ["D100", "D104", "D203", "D213"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:datetime.datetime.utcnow() is deprecated:DeprecationWarning:botocore.auth",
"ignore::DeprecationWarning:botocore.*",
]