[project]
name = "n8n-fabric"
version = "0.1.0"
description = "n8n workflow automation fabric with MCP server, Qdrant vector storage, and Redis caching"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "ry-ops" }
]
keywords = [
"n8n",
"workflow",
"automation",
"mcp",
"fabric",
"qdrant",
"redis",
]
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",
]
dependencies = [
"httpx>=0.27.0",
"click>=8.1.0",
"rich>=13.0.0",
"pyyaml>=6.0",
"redis>=5.0.0",
"qdrant-client>=1.7.0",
"sentence-transformers>=2.2.0",
"mcp>=1.0.0",
"pydantic>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/ry-ops/n8n-fabric"
Repository = "https://github.com/ry-ops/n8n-fabric"
[project.scripts]
n8n-fabric = "n8n_fabric.cli:main"
n8n-fabric-mcp = "n8n_fabric.mcp.server:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"ruff>=0.3.0",
"mypy>=1.8.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/n8n_fabric"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true