CoolFace
Apppublic

Agents-MCP-Hackathon/Stack_Overflow_MCP_Server

sourceHugging Faceupdated 1y agoView on Hugging Face
2likes
pyproject.toml65 linesDownload Raw Back to root
1[build-system]2requires = ["hatchling>=1.0.0"]3build-backend = "hatchling.build"4 5[project]6name = "stackoverflow-mcp"7version = "0.1.3"8description = "Stack Overflow MCP server for LLM applications"9readme = "README.md"10requires-python = ">=3.10"11license = "MIT"12license-files = ["LICEN[CS]E*"]13authors = [14    {name = "Mark Nawar", email = "markadelnawar@gmail.com"},15]16classifiers = [17    "Programming Language :: Python :: 3.10",18    "Programming Language :: Python :: 3.11",19    "Programming Language :: Python :: 3.12",20    "License :: OSI Approved :: MIT License",21    "Operating System :: OS Independent",22]23dependencies = [24    "httpx>=0.24.0",25    "python-dotenv>=1.0.0",26    "mcp>=0.7.0",27    "gradio[mcp]>=5.33.1",28]29 30[project.optional-dependencies]31dev = [32    "pytest>=7.0.0",33    "pytest-asyncio>=0.21.0",34    "pytest-cov>=4.0.0",35]36 37[project.urls]38Homepage = "https://github.com/CodexVeritax/stackoverflow-mcp-server"39Issues = "https://github.com/CodexVeritax/stackoverflow-mcp-server/issues"40 41[tool.hatch.build.targets.wheel]42packages = ["stackoverflow_mcp"]43 44[tool.hatch.build.targets.sdist]45include = [46    "stackoverflow_mcp",47    "LICENSE",48    "README.md",49    "pyproject.toml",50]51 52[project.scripts]53stackoverflow-mcp = "stackoverflow_mcp.__main__:main"54 55[tool.mypy]56python_version = "3.8"57warn_return_any = true58warn_unused_configs = true59disallow_untyped_defs = true60disallow_incomplete_defs = true61 62[tool.pytest.ini_options]63testpaths = ["tests"]64python_files = "test_*.py"65