This commit is contained in:
@@ -3,71 +3,47 @@ requires = ["setuptools>=61.0", "wheel"]
|
|||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "mcp-server-cli"
|
name = "local-llm-prompt-manager"
|
||||||
version = "1.0.0"
|
version = "0.1.0"
|
||||||
description = "A CLI tool that creates a local Model Context Protocol (MCP) server for developers"
|
description = "A CLI tool for developers to manage, organize, version control, and share local LLM prompts and configurations"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.9"
|
||||||
license = {text = "MIT"}
|
license = {text = "MIT"}
|
||||||
authors = [
|
authors = [
|
||||||
{name = "MCP Server CLI", email = "dev@example.com"}
|
{name = "Developer", email = "dev@example.com"}
|
||||||
]
|
]
|
||||||
keywords = ["cli", "mcp", "model-context-protocol", "ai", "assistant"]
|
keywords = ["llm", "prompt", "cli", "ollama", "lm-studio"]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Environment :: Console",
|
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.8",
|
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.12"
|
||||||
]
|
]
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fastapi>=0.104.0",
|
"click>=8.1.7",
|
||||||
"click>=8.1.0",
|
"rich>=13.7.0",
|
||||||
"pydantic>=2.5.0",
|
"pyyaml>=6.0.1",
|
||||||
"pyyaml>=6.0",
|
"requests>=2.31.0",
|
||||||
"aiofiles>=23.2.0",
|
"jinja2>=3.1.3"
|
||||||
"httpx>=0.25.0",
|
|
||||||
"gitpython>=3.1.0",
|
|
||||||
"uvicorn>=0.24.0",
|
|
||||||
"sse-starlette>=1.6.0",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
dev = [
|
dev = [
|
||||||
"pytest>=7.0",
|
"pytest>=7.4.0",
|
||||||
"pytest-cov>=4.0",
|
"pytest-cov>=4.1.0"
|
||||||
"ruff>=0.1.0",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[project.scripts]
|
||||||
|
llm-prompt = "src.cli:main"
|
||||||
|
|
||||||
|
[tool.setuptools.packages.find]
|
||||||
|
where = ["."]
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
testpaths = ["tests"]
|
testpaths = ["tests"]
|
||||||
python_files = ["test_*.py"]
|
python_files = ["test_*.py"]
|
||||||
python_classes = ["Test*"]
|
|
||||||
python_functions = ["test_*"]
|
python_functions = ["test_*"]
|
||||||
addopts = "-v --tb=short"
|
|
||||||
|
|
||||||
[tool.coverage.run]
|
|
||||||
source = ["src/mcp_server_cli"]
|
|
||||||
omit = ["*/tests/*", "*/__pycache__/*"]
|
|
||||||
|
|
||||||
[tool.coverage.report]
|
|
||||||
exclude_lines = ["pragma: no cover", "def __repr__", "raise NotImplementedError"]
|
|
||||||
|
|
||||||
[tool.black]
|
|
||||||
line-length = 100
|
|
||||||
target-version = ["py38", "py39", "py310", "py311", "py312"]
|
|
||||||
include = "\\.pyi?$"
|
|
||||||
|
|
||||||
[tool.ruff]
|
|
||||||
line-length = 100
|
|
||||||
target-version = "py38"
|
|
||||||
|
|
||||||
[tool.ruff.lint]
|
|
||||||
select = ["E", "F", "W", "I"]
|
|
||||||
ignore = ["E501"]
|
|
||||||
|
|||||||
Reference in New Issue
Block a user