summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-07-17 11:51:56 +0200
committerDanilo M. <danix@danix.xyz>2026-07-17 11:51:56 +0200
commit1ac77e4b50f7501eeb361b2074f81256949c6733 (patch)
treeb52dd8e525c0178356a6b9232e95464516fe5eba /pyproject.toml
parentb8ef1a1de005bab96185dff439294e0022572c63 (diff)
downloadhyprsunset-qt-0.1.1.tar.gz
hyprsunset-qt-0.1.1.zip
fix: constrain wheel to hyprsunset_qt package, bump to 0.1.1v0.1.1
setuptools flat-layout auto-discovery failed the build: it saw data/, SlackBuild/ and hyprsunset_qt/ as competing top-level packages. Pin packages=["hyprsunset_qt"] and switch license to an SPDX string. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml7
1 files changed, 5 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 6214ca8..23d0db7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,14 +1,17 @@
[project]
name = "hyprsunset-qt"
-version = "0.1.0"
+version = "0.1.1"
description = "Qt6 GUI for hyprsunset"
requires-python = ">=3.11"
-license = { text = "GPL-2.0-only" }
+license = "GPL-2.0-only"
dependencies = ["PyQt6"]
[project.scripts]
hyprsunset-qt = "hyprsunset_qt.__main__:main"
+[tool.setuptools]
+packages = ["hyprsunset_qt"]
+
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"