-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (57 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
70 lines (57 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "codeocean-mcp-server"
version = "0.11.0"
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.14.0,<0.15.0",
"mcp>=1.23.0,<1.24.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.*",
]
markers = ["integration: requires external services (AWS/Bedrock)"]
asyncio_mode = "strict"