-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.08 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
[project]
name = "oracle.oci-api-mcp-server"
version = "2.0.0"
description = "OCI CLI MCP server"
readme = "README.md"
requires-python = ">=3.13"
license = "UPL-1.0"
license-files = ["LICENSE.txt"]
authors = [
{name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"},
]
dependencies = [
"fastmcp==2.14.2",
"oci-cli==3.71.1"
]
classifiers = [
"License :: OSI Approved :: Universal Permissive License (UPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
"oracle.oci-api-mcp-server" = "oracle.oci_api_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",
"pytest-cov>=7.0.0",
]
[tool.coverage.run]
omit = [
"**/__init__.py",
"**/tests/*",
"dist/*",
".venv/*",
]
[tool.coverage.report]
omit = [
"**/__init__.py",
"**/tests/*",
]
precision = 2
fail_under = 90