
Merge pull request implementing complete PyPI query MCP server with comprehensive features and CI/CD pipeline.
20 lines
407 B
Python
20 lines
407 B
Python
# Import built-in modules
|
|
from pathlib import Path
|
|
|
|
|
|
PACKAGE_NAME = "pypi_query_mcp"
|
|
THIS_ROOT = Path(__file__).parent.parent
|
|
PROJECT_ROOT = THIS_ROOT.parent
|
|
|
|
|
|
def _assemble_env_paths(*paths):
|
|
"""Assemble environment paths separated by a semicolon.
|
|
|
|
Args:
|
|
*paths: Paths to be assembled.
|
|
|
|
Returns:
|
|
str: Assembled paths separated by a semicolon.
|
|
"""
|
|
return ";".join(paths)
|