n8n/packages/@n8n/task-runner-python/pyproject.toml
github-actions[bot] c39496eda9
fix(core): Use stricter flags when starting python runner (backport 1.x) (#25157)
Co-authored-by: Tomi Turtiainen <10324676+tomi@users.noreply.github.com>
2026-02-04 13:43:50 +02:00

37 lines
705 B
TOML

[project]
name = "task-runner-python"
version = "0.1.0"
description = "Native Python task runner for n8n"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"websockets>=15.0.1",
]
[project.optional-dependencies]
sentry = ["sentry-sdk>=2.35.2"]
[dependency-groups]
dev = [
"ruff>=0.12.8",
"ty>=0.0.1a17",
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"pytest-asyncio>=0.24.0",
"aiohttp>=3.10.0",
"setuptools>=80.10.2",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "-v"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]