pyproject.toml•1.66 kB
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "n8n-mcp-server"
version = "1.0.0"
description = "MCP-сервер для управления автоматизациями в n8n"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Aleksey FineINK Lebedev", email = "fineink@example.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.9"
dependencies = [
"mcp>=1.0.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
]
[project.scripts]
n8n-mcp-server = "n8n_mcp_server.server:main"
[project.urls]
Homepage = "https://github.com/your-repo/n8n-mcp-server"
Repository = "https://github.com/your-repo/n8n-mcp-server.git"
Issues = "https://github.com/your-repo/n8n-mcp-server/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["n8n_mcp_server*"]
[tool.black]
line-length = 100
target-version = ['py39']
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short"