From 0f7ac6e4425de2e57f31c011d8650e3efe440339 Mon Sep 17 00:00:00 2001 From: Asger Gitz-Johansen Date: Wed, 29 Jul 2026 16:23:30 +0200 Subject: [PATCH] feat: initial commit --- .gitignore | 10 ++++++++++ .python-version | 1 + README.md | 0 pyproject.toml | 17 +++++++++++++++++ src/sleep_detection/__init__.py | 2 ++ 5 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 README.md create mode 100644 pyproject.toml create mode 100644 src/sleep_detection/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..93f1928 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "sleep-detection" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +authors = [ + { name = "Asger Gitz-Johansen", email = "asger.gitz@hotmail.com" } +] +requires-python = ">=3.12" +dependencies = [] + +[project.scripts] +sleep-detection = "sleep_detection:main" + +[build-system] +requires = ["uv_build>=0.12.0,<0.13.0"] +build-backend = "uv_build" diff --git a/src/sleep_detection/__init__.py b/src/sleep_detection/__init__.py new file mode 100644 index 0000000..524f383 --- /dev/null +++ b/src/sleep_detection/__init__.py @@ -0,0 +1,2 @@ +def main() -> None: + print("Hello from sleep-detection!")