mirror of
https://github.com/tadata-org/fastapi_mcp.git
synced 2025-04-13 23:32:11 +03:00
67 lines
1.7 KiB
TOML
67 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "fastapi-mcp"
|
|
version = "0.1.0"
|
|
description = "Automatic MCP server generator for FastAPI applications - converts FastAPI endpoints to MCP tools for LLM integration"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {file = "LICENSE"}
|
|
authors = [
|
|
{name = "Tadata Inc.", email = "itay@tadata.com"},
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Framework :: FastAPI",
|
|
]
|
|
keywords = ["fastapi", "mcp", "llm", "claude", "ai", "tools", "api", "conversion"]
|
|
dependencies = [
|
|
"fastapi>=0.100.0",
|
|
"typer>=0.9.0",
|
|
"rich>=13.0.0",
|
|
"mcp>=1.3.0",
|
|
"pydantic>=2.0.0",
|
|
"uvicorn>=0.20.0",
|
|
"requests>=2.25.0",
|
|
"inspect-mate>=0.0.2",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/tadata-org/fastapi_mcp"
|
|
Documentation = "https://github.com/tadata-org/fastapi_mcp#readme"
|
|
"Bug Tracker" = "https://github.com/tadata-org/fastapi_mcp/issues"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"black>=23.0.0",
|
|
"isort>=5.0.0",
|
|
"mypy>=1.0.0",
|
|
"ruff>=0.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
fastapi-mcp = "fastapi_mcp.cli:app"
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ["py310"]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 100
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|