Mercurial > code > home > repos > front-door-lock
comparison pyproject.toml @ 0:4365c72c59f6
start
author | drewp@bigasterisk.com |
---|---|
date | Sun, 27 Aug 2023 11:12:20 -0700 |
parents | |
children | 3b82ee3b9d79 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4365c72c59f6 |
---|---|
1 [project] | |
2 name = "front_door_lock" | |
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", | |
16 "aiomqtt>=1.1.0", | |
17 "yapf>=0.40.1", | |
18 "jwskate>=0.9.0", | |
19 ] | |
20 requires-python = ">=3.11" | |
21 license = {text = "MIT"} | |
22 | |
23 [build-system] | |
24 requires = ["pdm-pep517>=1.0.0"] | |
25 build-backend = "pdm.pep517.api" | |
26 | |
27 [[tool.pdm.source]] | |
28 url = "https://projects.bigasterisk.com/" | |
29 verify_ssl = true | |
30 name = "home" | |
31 | |
32 [tool.ruff] | |
33 ignore = [] | |
34 | |
35 exclude = [ | |
36 ".hg", | |
37 ".ruff_cache", | |
38 ".venv", | |
39 "__pypackages__", | |
40 "dist", | |
41 "node_modules", | |
42 ] | |
43 | |
44 line-length = 160 | |
45 | |
46 # Allow unused variables when underscore-prefixed. | |
47 dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" | |
48 | |
49 target-version = "py311" | |
50 | |
51 [tool.ectoscope] | |
52 cookiecutter-path = "/my/proj/ectoscope/cookie/skeleton" | |
53 cookiecutter-rev = "486fdba7e160" |