pyproject.toml•2.21 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-feedforward"
version = "2.0.0"
description = "A modern MCP server for interactive user feedback collection with GUI"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "MCP FeedForward", email = "feedback@example.com"},
]
keywords = [
"mcp",
"model-context-protocol",
"feedback",
"gui",
"interactive",
"ai-assistant",
"claude",
"image-picker"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Topic :: Utilities",
]
dependencies = [
"fastmcp>=0.0.4",
"pillow>=8.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"black",
"isort",
"mypy",
]
[project.urls]
Homepage = "https://github.com/keizman/mcp-feedforward"
Repository = "https://github.com/keizman/mcp-feedforward"
Documentation = "https://github.com/keizman/mcp-feedforward#readme"
"Bug Tracker" = "https://github.com/keizman/mcp-feedforward/issues"
[project.scripts]
mcp-feedforward = "mcp_feedforward.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_feedforward"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true