summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 1e2079a62fb2055182f7e508ebbe807c64827d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[build-system]
requires = ["setuptools>=69"]
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.11"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "Parley contributors" }]

[project.scripts]
parley = "parley.cli:main"

[tool.setuptools.packages.find]
where = ["src"]

[tool.pytest.ini_options]
testpaths = ["tests"]