blob: baec27e8a2e079742031a7f52a5ad9c80fd6f112 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "parley-dictation"
version = "0.1.0.dev0"
description = "Local-first dictation for GNOME"
readme = "README.md"
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 = ["."]
include = ["parley*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint.per-file-ignores]
"parley/ctl.py" = ["E402"]
"parley/daemon.py" = ["E402"]
"parley/ibus_engine.py" = ["E402"]
|