commit 0f7ac6e4425de2e57f31c011d8650e3efe440339 Author: Asger Gitz-Johansen Date: Wed Jul 29 16:23:30 2026 +0200 feat: initial commit 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!")