Skip to content

Commit 0938c95

Browse files
committed
chore: update project metadata and version to 1.0.0
1 parent de5e448 commit 0938c95

File tree

3 files changed

+511
-267
lines changed

3 files changed

+511
-267
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Protocols.io MCP Server
2+
3+
An MCP server that enables MCP clients like Claude Desktop to interact with data from protocols.io.

pyproject.toml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,34 @@
11
[project]
22
name = "protocols-io-mcp"
3-
version = "0.1.0"
3+
version = "1.0.0"
4+
authors = [
5+
{ name="Hao-Quan Liu", email="contact@haoquan.me" }
6+
]
47
description = "An MCP server that enables MCP clients like Claude Desktop to interact with data from protocols.io."
58
readme = "README.md"
69
requires-python = ">=3.10"
710
dependencies = [
811
"click>=8.2.1",
912
"fastmcp>=2.11.1",
10-
"hatchling>=1.27.0",
1113
"httpx>=0.28.1",
1214
]
15+
classifiers = [
16+
"Development Status :: 5 - Production/Stable",
17+
"Intended Audience :: Developers",
18+
"Intended Audience :: Science/Research",
19+
"License :: OSI Approved :: MIT License",
20+
"Programming Language :: Python :: 3",
21+
"Programming Language :: Python :: 3.10",
22+
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
24+
"Operating System :: OS Independent",
25+
]
26+
license = "MIT"
27+
license-files = ["LICENSE"]
28+
29+
[project.urls]
30+
Homepage = "https://github.com/hqn21/protocols-io-mcp-server"
31+
Issues = "https://github.com/hqn21/protocols-io-mcp-server/issues"
1332

1433
[project.scripts]
1534
protocols-io-mcp = "protocols_io_mcp.__main__:main"
@@ -20,6 +39,8 @@ dev = [
2039
"pytest-asyncio>=1.1.0",
2140
"pytest-mock>=3.14.1",
2241
"python-dotenv>=1.1.1",
42+
"build>=1.3.0",
43+
"twine>=6.1.0",
2344
]
2445

2546
[build-system]

0 commit comments

Comments
 (0)