summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-07-17 09:27:17 +0200
committerDanilo M. <danix@danix.xyz>2026-07-17 09:27:17 +0200
commit14c2236a733a65a58bf2cc8ccb6406718635cf49 (patch)
tree8fb9760647891b0e4d5ba4ed34df631d85233e36
parent2e39e223c4d0d400a7c51867c9b3a01c79395481 (diff)
downloadhyprsunset-qt-14c2236a733a65a58bf2cc8ccb6406718635cf49.tar.gz
hyprsunset-qt-14c2236a733a65a58bf2cc8ccb6406718635cf49.zip
chore: project scaffolding
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
-rw-r--r--.gitignore6
-rw-r--r--hyprsunset_qt/__init__.py3
-rw-r--r--pyproject.toml17
-rw-r--r--tests/__init__.py0
4 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..71bebbe
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+__pycache__/
+*.pyc
+*.egg-info/
+build/
+dist/
+.pytest_cache/
diff --git a/hyprsunset_qt/__init__.py b/hyprsunset_qt/__init__.py
new file mode 100644
index 0000000..901a708
--- /dev/null
+++ b/hyprsunset_qt/__init__.py
@@ -0,0 +1,3 @@
+"""hyprsunset-qt — Qt6 GUI for hyprsunset."""
+
+__version__ = "0.1.0"
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..6214ca8
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,17 @@
+[project]
+name = "hyprsunset-qt"
+version = "0.1.0"
+description = "Qt6 GUI for hyprsunset"
+requires-python = ">=3.11"
+license = { text = "GPL-2.0-only" }
+dependencies = ["PyQt6"]
+
+[project.scripts]
+hyprsunset-qt = "hyprsunset_qt.__main__:main"
+
+[build-system]
+requires = ["setuptools>=61"]
+build-backend = "setuptools.build_meta"
+
+[tool.pytest.ini_options]
+testpaths = ["tests"]
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/__init__.py