From 14c2236a733a65a58bf2cc8ccb6406718635cf49 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Fri, 17 Jul 2026 09:27:17 +0200 Subject: chore: project scaffolding Co-Authored-By: Claude Opus 4.8 --- pyproject.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') 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"] -- cgit v1.2.3