Files
pipeline-bridge/pyproject.toml
Billy D. 49c804e234
All checks were successful
CI / Lint (push) Successful in 40s
CI / Test (push) Successful in 43s
CI / Release (push) Successful in 5s
CI / Notify (push) Successful in 1s
fix: ruff formatting and allow-direct-references for handler-base dep
2026-02-02 08:44:51 -05:00

46 lines
1019 B
TOML

[project]
name = "pipeline-bridge"
version = "1.0.0"
description = "Bridge NATS events to Kubeflow Pipelines and Argo Workflows"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Davies Tech Labs" }]
dependencies = [
"handler-base @ git+https://git.daviestechlabs.io/daviestechlabs/handler-base.git",
"httpx>=0.27.0",
"kubernetes>=28.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["."]
only-include = ["pipeline_bridge.py"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
filterwarnings = ["ignore::DeprecationWarning"]