Mercurial > code > home > repos > doorbell
annotate pyproject.toml @ 9:7e19dffb767b default tip
rm more unused code and logging
author | drewp@bigasterisk.com |
---|---|
date | Mon, 06 Feb 2023 11:53:42 -0800 |
parents | f822e7fe7120 |
children |
rev | line source |
---|---|
0 | 1 [project] |
2 name = "" | |
3 version = "" | |
4 description = "" | |
5 authors = [ | |
6 {name = "Drew Perttula", email = "drewp@bigasterisk.com"}, | |
7 ] | |
8 dependencies = [ | |
2 | 9 "asyncio-mqtt>=0.16.1", |
0 | 10 "paho-mqtt>=1.6.1", |
2 | 11 "pyserial-asyncio>=0.6", |
12 "starlette>=0.23.1", | |
13 "telemetrix-aio>=1.11", | |
14 "uvicorn>=0.20.0", | |
0 | 15 ] |
16 requires-python = ">=3.10" | |
17 license = {text = "MIT"} | |
18 | |
19 [tool.pdm] | |
20 | |
21 [build-system] | |
22 requires = ["pdm-pep517>=1.0.0"] | |
23 build-backend = "pdm.pep517.api" |