view pyproject.toml @ 27:32cfefe3155b

try harder to crash if there's an mqtt error, so k8s does a full restart
author drewp@bigasterisk.com
date Sat, 23 Mar 2024 15:25:02 -0700
parents e3dbd04dab96
children
line wrap: on
line source

[project]
name = "light-bridge"
version = "0.0.1"
description = ""
authors = [
    {name = "Drew Perttula", email = "drewp@bigasterisk.com"},
]
dependencies = [
    "ruff>=0.0.286",
    "starlette-exporter>=0.13.0",
    "starlette>=0.20.4",
    "uvicorn>=0.29.0",
    "background-loop>=1.3.0",
    "patchablegraph>=1.5.0",
    "rdfdb==0.24.0",
    "dataclasses-json>=0.6.3",
    "aiomqtt>=2.0.0",
]
requires-python = ">=3.11"
license = {text = "MIT"}

[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"

[[tool.pdm.source]]
url = "https://projects.bigasterisk.com/"
verify_ssl = true
name = "home"

[tool.ruff]
ignore = []

exclude = [
    ".hg",
    ".ruff_cache",
    ".venv",
    "__pypackages__",
    "dist",
    "node_modules",
]

line-length = 160

# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

target-version = "py311"

["tool.ectoscope"]
cookiecutter-path = "/my/proj/ectoscope/cookie/skeleton"
cookiecutter-rev = "b421cb90fed4"