-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 873 Bytes
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
[project]
name = "oracle.oci-object-storage-mcp-server"
version = "1.0.1"
description = "OCI Object Storage Service MCP server"
readme = "README.md"
authors = [
{name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"},
]
requires-python = ">=3.13"
dependencies = [
"fastmcp==2.12.2",
"oci==2.160.0",
]
classifiers = [
"License :: OSI Approved :: Universal Permissive License (UPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
"oracle.oci-object-storage-mcp-server" = "oracle.oci_object_storage_mcp_server.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["oracle"]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
]