Mercurial > code > home > repos > light-bridge
annotate pyproject.toml @ 29:35affd4d37d4 default tip
add 1st ikea color light
author | drewp@bigasterisk.com |
---|---|
date | Sat, 14 Dec 2024 22:36:29 -0800 |
parents | 32cfefe3155b |
children |
rev | line source |
---|---|
0 | 1 [project] |
2 name = "light-bridge" | |
3 version = "0.0.1" | |
4 description = "" | |
5 authors = [ | |
6 {name = "Drew Perttula", email = "drewp@bigasterisk.com"}, | |
7 ] | |
8 dependencies = [ | |
9 "ruff>=0.0.286", | |
10 "starlette-exporter>=0.13.0", | |
11 "starlette>=0.20.4", | |
27
32cfefe3155b
try harder to crash if there's an mqtt error, so k8s does a full restart
drewp@bigasterisk.com
parents:
14
diff
changeset
|
12 "uvicorn>=0.29.0", |
0 | 13 "background-loop>=1.3.0", |
14 "patchablegraph>=1.5.0", | |
15 "rdfdb==0.24.0", | |
8 | 16 "dataclasses-json>=0.6.3", |
14
e3dbd04dab96
add mqtt; talk to first light (no throttling)
drewp@bigasterisk.com
parents:
8
diff
changeset
|
17 "aiomqtt>=2.0.0", |
0 | 18 ] |
19 requires-python = ">=3.11" | |
20 license = {text = "MIT"} | |
21 | |
22 [build-system] | |
23 requires = ["pdm-pep517>=1.0.0"] | |
24 build-backend = "pdm.pep517.api" | |
25 | |
26 [[tool.pdm.source]] | |
27 url = "https://projects.bigasterisk.com/" | |
28 verify_ssl = true | |
29 name = "home" | |
30 | |
31 [tool.ruff] | |
32 ignore = [] | |
33 | |
34 exclude = [ | |
35 ".hg", | |
36 ".ruff_cache", | |
37 ".venv", | |
38 "__pypackages__", | |
39 "dist", | |
40 "node_modules", | |
41 ] | |
42 | |
43 line-length = 160 | |
44 | |
45 # Allow unused variables when underscore-prefixed. | |
46 dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" | |
47 | |
48 target-version = "py311" | |
49 | |
50 ["tool.ectoscope"] | |
51 cookiecutter-path = "/my/proj/ectoscope/cookie/skeleton" | |
52 cookiecutter-rev = "b421cb90fed4" |