summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2026-07-24 12:24:07 +0200
committerYuval Adam <_@yuv.al>2026-07-24 12:24:07 +0200
commit7f99c1957f29d57c006a11a02226ecab030a1d4c (patch)
treeb9fc555d6bfd603847eb066ed71acbe5d21c09b3 /pyproject.toml
parentdf594d42ad1206fcb246bedb1945949527d7e039 (diff)
Add D-Bus daemon and Arch user service packaging
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml11
1 files changed, 8 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 1e2079a..cf91954 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,5 @@
[build-system]
-requires = ["setuptools>=69"]
+requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
@@ -7,12 +7,17 @@ name = "parley-dictation"
version = "0.1.0.dev0"
description = "Local-first dictation for GNOME"
readme = "README.md"
-requires-python = ">=3.11"
-license = { text = "GPL-3.0-or-later" }
+requires-python = ">=3.14"
+license = "GPL-3.0-or-later"
authors = [{ name = "Parley contributors" }]
[project.scripts]
parley = "parley.cli:main"
+parleyd = "parley.daemon:main"
+parleyctl = "parley.ctl:main"
+
+[tool.setuptools.package-data]
+"parley.interfaces" = ["*.xml"]
[tool.setuptools.packages.find]
where = ["src"]