Skip to content

Commit 2e233f9

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/main'
2 parents 5a7caca + 3fc3e47 commit 2e233f9

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
from .publish_mcp_server import mcp, main
88

9-
__all__ = ["mcp", "main"]
9+
__all__ = ["mcp", "main"]

pyproject.toml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ description = "An MCP server that helps users publish their MCP servers to the r
99
authors = [
1010
{name = "Marlene Mhangami", email = "marlenemhangami@gmail.com"},
1111
]
12-
readme = "README.md"
13-
license = {text = "MIT"}
12+
readme = "Readme.md"
13+
license = "MIT"
1414
requires-python = ">=3.8"
1515
dependencies = [
1616
"fastmcp>=0.1.0",
@@ -19,7 +19,6 @@ keywords = ["mcp", "model-context-protocol", "server", "publishing"]
1919
classifiers = [
2020
"Development Status :: 4 - Beta",
2121
"Intended Audience :: Developers",
22-
"License :: OSI Approved :: MIT License",
2322
"Programming Language :: Python :: 3",
2423
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
@@ -29,15 +28,13 @@ classifiers = [
2928
]
3029

3130
[project.urls]
32-
Homepage = "https://github.com/marlenezw/publish-mcp-server"
33-
Repository = "https://github.com/marlenezw/publish-mcp-server"
34-
Issues = "https://github.com/marlenezw/publish-mcp-server/issues"
31+
"Homepage" = "https://github.com/marlenezw/publish-mcp-server"
32+
"Bug Tracker" = "https://github.com/marlenezw/publish-mcp-server/issues"
33+
"Repository" = "https://github.com/marlenezw/publish-mcp-server"
3534

3635
[project.scripts]
3736
publish-mcp-server = "publish_mcp_server:main"
3837

39-
[tool.setuptools]
40-
packages = ["publish_mcp_server"]
41-
42-
[tool.setuptools.package-dir]
43-
publish_mcp_server = "."
38+
[tool.setuptools.packages.find]
39+
where = ["."]
40+
include = ["publish_mcp_server*"]

0 commit comments

Comments
 (0)