Skip to content

Commit a99cdbf

Browse files
serprexjovezhong
authored andcommitted
0.1.1 (#12)
1 parent 6cde490 commit a99cdbf

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*]
2+
trim_trailing_whitespace = true
3+
end_of_line = lf

mcp_timeplus/mcp_server.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ def create_timeplus_client():
108108
f"as {client_config['username']} "
109109
f"(secure={client_config['secure']}, verify={client_config['verify']}, "
110110
f"connect_timeout={client_config['connect_timeout']}s, "
111-
f"send_receive_timeout={client_config['send_receive_timeout']}s)")
111+
f"send_receive_timeout={client_config['send_receive_timeout']}s)"
112+
)
112113

113114
try:
114115
client = timeplus_connect.get_client(**client_config)

pyproject.toml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[project]
22
name = "mcp-timeplus"
3-
version = "0.1.0"
3+
version = "0.1.2"
44
description = "An MCP server for Timeplus."
55
readme = "README.md"
66
license = "Apache-2.0"
77
license-files = ["LICENSE"]
88
requires-python = ">=3.13"
99
dependencies = [
10-
"mcp>=1.0.0",
11-
"python-dotenv>=1.0.1",
12-
"fastmcp>=0.4.0",
13-
"uvicorn>=0.34.0",
14-
"timeplus-connect>=0.8.14",
10+
"mcp>=1.0.0",
11+
"python-dotenv>=1.0.1",
12+
"fastmcp>=0.4.0",
13+
"uvicorn>=0.34.0",
14+
"timeplus-connect>=0.8.14",
1515
]
1616

1717
[project.scripts]
@@ -21,10 +21,7 @@ mcp-timeplus = "mcp_timeplus.main:main"
2121
Home = "https://github.com/jovezhong/mcp-timeplus"
2222

2323
[project.optional-dependencies]
24-
dev = [
25-
"ruff",
26-
"pytest"
27-
]
24+
dev = ["ruff", "pytest"]
2825

2926
[tool.hatch.build.targets.wheel]
3027
packages = ["mcp_timeplus"]

0 commit comments

Comments
 (0)