Docs / docs (push) Successful in 33s
Playwright Tests / test-playwright (1, 2) (push) Successful in 3m8s
Playwright Tests / test-playwright (2, 2) (push) Successful in 2m29s
pre-commit / pre-commit (push) Failing after 2m19s
Test Backend / test-backend (push) Successful in 3m9s
Compose Smoke Test / test-compose (push) Successful in 43s
Publish / publish (push) Successful in 54s
Playwright Tests / merge-reports (push) Successful in 1m12s
53 lines
1.6 KiB
TOML
53 lines
1.6 KiB
TOML
[project]
|
|
name = "fluksio-worker"
|
|
version = "0.1.4"
|
|
description = "Runs Fluksio nodes on a machine the engine cannot reach"
|
|
readme = "README.md"
|
|
license = "AGPL-3.0-or-later"
|
|
license-files = ["LICENSE"]
|
|
requires-python = ">=3.12"
|
|
authors = [{ name = "Fluksio", email = "stroblme@posteo.de" }]
|
|
keywords = ["automation", "workflow", "distributed", "worker", "gpu"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"Operating System :: MacOS",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Home Automation",
|
|
"Topic :: Scientific/Engineering",
|
|
"Topic :: System :: Distributed Computing",
|
|
]
|
|
dependencies = [
|
|
"websockets>=12",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://fluksio.com"
|
|
Documentation = "https://docs.fluksio.com/code/workers/"
|
|
|
|
[project.scripts]
|
|
fluksio-worker = "fluksio_worker.agent:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["fluksio_worker"]
|
|
|
|
[tool.ruff]
|
|
# The engine's config, so both distributions are linted the same way.
|
|
extend = "../backend/pyproject.toml"
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
# This one takes its own directory off sys.path before the rest of its imports
|
|
# run, which is the whole point of doing it there.
|
|
"fluksio_worker/worker_main.py" = ["E402"]
|
|
# Copied onto another machine it has no logger configured before it tells you
|
|
# the one dependency it is missing.
|
|
"fluksio_worker/agent.py" = ["T201"]
|