Mercurial > code > home > repos > light-bridge
annotate pyproject.toml @ 17:1d15dc4d673f
cleanup color convert code path
author | drewp@bigasterisk.com |
---|---|
date | Sun, 28 Jan 2024 21:18:40 -0800 |
parents | e3dbd04dab96 |
children | 32cfefe3155b |
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", | |
12 "uvicorn[standard]>=0.18.2", | |
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" |