aboutsummaryrefslogtreecommitdiff
path: root/pocketbook/pyproject.toml
blob: afc5c713cfc39902131adb9a7547e08c69428f1b (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>=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"]