aboutsummaryrefslogtreecommitdiff
path: root/pocketbook/pyproject.toml
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-26 14:05:40 -0500
committerCraig Jennings <c@cjennings.net>2026-05-26 14:05:40 -0500
commit70e89e946cbdff307284d11a46558161f713607c (patch)
treec305ce9249fac0aef1318f5caabae0df31be7e95 /pocketbook/pyproject.toml
parent92f4a9394ae1b662d037a3016e94058a3881bdb8 (diff)
downloadarchsetup-70e89e946cbdff307284d11a46558161f713607c.tar.gz
archsetup-70e89e946cbdff307284d11a46558161f713607c.zip
refactor: fold pocketbook in-tree and drop its install steps
Pocketbook is nowhere near ready, so I pulled it back from publication: deleted the github mirror and the cjennings.net repo, removed the server mirror hook, and copied the package into pocketbook/ here until it's ready to spin back out. Dropped the steps that provisioned it on a fresh install: the gtk4-layer-shell dep and the pip install in archsetup, and the clone in post-install.sh. That clone pointed at the now-deleted github repo, so it would have failed a fresh run regardless. Re-wiring the install is tracked in the pocketbook backlog.
Diffstat (limited to 'pocketbook/pyproject.toml')
-rw-r--r--pocketbook/pyproject.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/pocketbook/pyproject.toml b/pocketbook/pyproject.toml
new file mode 100644
index 0000000..afc5c71
--- /dev/null
+++ b/pocketbook/pyproject.toml
@@ -0,0 +1,21 @@
+[build-system]
+requires = ["setuptools>=68.0"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "pocketbook"
+version = "0.1.0"
+description = "GTK4 layer-shell notes panel for Hyprland"
+requires-python = ">=3.12"
+dependencies = [
+ "PyGObject",
+]
+
+[project.scripts]
+pocketbook = "pocketbook.__main__:main"
+
+[tool.setuptools.packages.find]
+where = ["src"]
+
+[tool.pytest.ini_options]
+testpaths = ["tests"]