61 lines
1.6 KiB
TOML
61 lines
1.6 KiB
TOML
[project]
|
|
name = "mcp-tingquan"
|
|
version = "0.0.1"
|
|
description = "MCP Feedback TingQuan Enhanced - Interactive user feedback and command execution for AI-assisted development"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
authors = [
|
|
{ name = "maticarmy", email = "maticarmy@example.com" }
|
|
]
|
|
keywords = ["mcp", "ai", "feedback", "gui", "web-ui", "interactive", "development"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Software Development :: User Interfaces",
|
|
]
|
|
dependencies = [
|
|
"fastmcp>=2.0.0",
|
|
"psutil>=7.0.0",
|
|
"pyside6>=6.8.2.1",
|
|
"fastapi>=0.115.0",
|
|
"uvicorn>=0.30.0",
|
|
"jinja2>=3.1.0",
|
|
"websockets>=13.0.0",
|
|
"aiohttp>=3.8.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/maticarmy/mcp-tingquan"
|
|
Repository = "https://github.com/maticarmy/mcp-tingquan"
|
|
Issues = "https://github.com/maticarmy/mcp-tingquan/issues"
|
|
|
|
[project.scripts]
|
|
mcp-tingquan = "mcp_feedback_enhanced.__main__:main"
|
|
interactive-tingquan-mcp = "mcp_feedback_enhanced.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcp_feedback_enhanced"]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"bump2version>=1.0.1",
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"twine>=6.1.0",
|
|
]
|