mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-23 12:55:23 +02:00
Some checks failed
Build: Benchmark Image / build (push) Waiting to run
CI: Master (Build, Test, Lint) / Build for Github Cache (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (22.22.3) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (24.15.0) (push) Waiting to run
CI: Master (Build, Test, Lint) / Lint (push) Waiting to run
CI: Master (Build, Test, Lint) / Performance (push) Waiting to run
CI: Master (Build, Test, Lint) / Notify Slack on failure (push) Blocked by required conditions
Util: Sync API Docs / sync-public-api (push) Waiting to run
CI: Python / Checks (push) Has been cancelled
Release: Schedule Patch Release PRs / Create patch release PR (${{ matrix.track }}) (beta) (push) Has been cancelled
Release: Schedule Patch Release PRs / Create patch release PR (${{ matrix.track }}) (stable) (push) Has been cancelled
Release: Schedule Patch Release PRs / Create patch release PR (${{ matrix.track }}) (v1) (push) Has been cancelled
Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
40 lines
759 B
TOML
40 lines
759 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"]
|
|
|
|
[tool.uv]
|
|
constraint-dependencies = ["urllib3>=2.7.0"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.14.10",
|
|
"ty>=0.0.5",
|
|
"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*"]
|