pyproject.toml•772 B
[project]
name = "quickchat-ai-mcp"
version = "0.0.11"
description = "Quickchat AI MCP Server"
authors = [
{ name = "Piotr Grudzien", email = "piotr@quickchat.ai" },
{ name = "Mateusz Jakubczak", email = "mateusz@quickchat.ai" }
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mcp[cli]>=1.6.0",
"requests>=2.31.0",
"mcp>=1.0.0",
"python-dotenv>=1.1.0",
]
keywords = [
"quickchat",
"mcp",
"ai-agent"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
quickchat-ai-mcp = "src.__main__:run"