From 0bd640a501c762225e5830e04ddff167bb07ed86 Mon Sep 17 00:00:00 2001 From: June Date: Thu, 30 Apr 2026 18:08:40 +0200 Subject: [PATCH] initial setup using `uv init` and README with short description --- .python-version | 1 + README.md | 4 ++++ main.py | 6 ++++++ pyproject.toml | 7 +++++++ 4 files changed, 18 insertions(+) create mode 100644 .python-version create mode 100644 README.md create mode 100644 main.py create mode 100644 pyproject.toml diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/README.md b/README.md new file mode 100644 index 0000000..a1a1830 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Dooris + +Dooris setup using HomeMatic with Web UI, API and OIDC integration. +Based on prior work of [hmdooris](https://git.hamburg.ccc.de/CCCHH/hmdooris). diff --git a/main.py b/main.py new file mode 100644 index 0000000..621798f --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from dooris!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b62aa35 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "dooris" +version = "0.1.0" +description = "Dooris setup using HomeMatic with Web UI, API and OIDC integration." +readme = "README.md" +requires-python = ">=3.14" +dependencies = []