pyproject.toml•1.53 kB
[project]
name = "reddit-research-mcp"
version = "0.1.1"
description = "A minimal Model Context Protocol server for Reddit content access"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name="King of the Grackles", email="chris@ivester.ai" },
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3.12.15",
"praw>=7.7.1",
"fastmcp>=2.12.1",
"openai-agents>=0.2.8",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"starlette>=0.32.0",
"uvicorn>=0.30.0",
"requests>=2.31.0",
]
[project.urls]
Homepage = "https://github.com/king-of-the-grackles/reddit-research-mcp"
Repository = "https://github.com/king-of-the-grackles/reddit-research-mcp"
Issues = "https://github.com/king-of-the-grackles/reddit-research-mcp/issues"
Documentation = "https://github.com/king-of-the-grackles/reddit-research-mcp#readme"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-mock>=3.14.0",
]
[project.scripts]
reddit-mcp = "src.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]