feat: rebrand to mcpypi v1.0.0 for PyPI release
Some checks failed
Bump version / Bump version and create changelog with commitizen (push) Has been cancelled
Tests / test (macos-latest, 3.10) (push) Has been cancelled
Tests / test (macos-latest, 3.11) (push) Has been cancelled
Tests / test (macos-latest, 3.12) (push) Has been cancelled
Tests / test (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / test (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / test (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / test (windows-latest, 3.10) (push) Has been cancelled
Tests / test (windows-latest, 3.11) (push) Has been cancelled
Tests / test (windows-latest, 3.12) (push) Has been cancelled
Tests / security (push) Has been cancelled

- Update package name from pypi-query-mcp-server to mcpypi
- Bump to v1.0.0 to reflect production-ready status with 37 tools
- Add comprehensive keywords for discoverability
- Update development status to Production/Stable
- Add mcpypi as primary script entry point
- Include security and system administration topic classifiers
- Add fun emoji to package description for PyPI appeal
This commit is contained in:
Ryan Malloy 2025-09-06 11:45:10 -06:00
parent a14277d773
commit c3615b1957

View File

@ -3,18 +3,18 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pypi-query-mcp-server"
version = "0.6.5"
description = "A Model Context Protocol (MCP) server for querying PyPI package information, dependencies, and compatibility"
name = "mcpypi"
version = "1.0.0"
description = "🎤 mcpypi - Your Master of Ceremonies for PyPI! The ultimate PyPI package intelligence platform through Model Context Protocol (MCP)"
authors = ["Hal <hal.long@outlook.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/loonghao/pypi-query-mcp-server"
repository = "https://github.com/loonghao/pypi-query-mcp-server"
documentation = "https://github.com/loonghao/pypi-query-mcp-server"
keywords = ["mcp", "pypi", "package", "dependency", "python"]
keywords = ["mcp", "pypi", "package", "dependency", "python", "security", "license", "analysis", "intelligence", "claude"]
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
@ -24,6 +24,9 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Software Distribution",
"Topic :: Security",
"Topic :: System :: Systems Administration",
"Framework :: AsyncIO",
]
packages = [{include = "pypi_query_mcp"}]
@ -48,7 +51,7 @@ nox = "^2025.0.0"
commitizen = "^3.0.0"
[tool.poetry.scripts]
pypi-query-mcp-server = "pypi_query_mcp.server:main"
mcpypi = "pypi_query_mcp.server:main"
pypi-query-mcp = "pypi_query_mcp.server:main"
[tool.ruff]