From c7ceb3b1095bc8f33de1a2560db7336c0c096c35 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 2 Sep 2025 10:30:50 +0200 Subject: [PATCH] feat: Initial version with an empty uv project --- .gitignore | 10 ++++++++++ .python-version | 1 + README.md | 0 main.py | 6 ++++++ pyproject.toml | 7 +++++++ uv.lock | 8 ++++++++ 6 files changed, 32 insertions(+) create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 README.md create mode 100644 main.py create mode 100644 pyproject.toml create mode 100644 uv.lock 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..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..a6b05ae --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from sway-eww-helper!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..5f736ed --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "sway-eww-helper" +version = "0.1.0" +description = "Helper daemon for displaying things on my eww bar" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [] diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..22adbfb --- /dev/null +++ b/uv.lock @@ -0,0 +1,8 @@ +version = 1 +revision = 3 +requires-python = ">=3.13" + +[[package]] +name = "sway-eww-helper" +version = "0.1.0" +source = { virtual = "." }