-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 885 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 885 Bytes
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
33
34
35
36
37
38
39
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nirimod"
version = "0.1.0"
description = "A polished GTK4/libadwaita GUI configurator for the niri Wayland compositor"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
dependencies = [
# PyGObject (gi.repository.Gtk, Adw) must be installed via system package manager:
# Arch: sudo pacman -S python-gobject gtk4 libadwaita
# Fedora: sudo dnf install python3-gobject gtk4 libadwaita
# Ubuntu: sudo apt install python3-gi gir1.2-gtk-4.0 gir1.2-adw-1
]
[project.scripts]
nirimod = "nirimod.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["nirimod"]
[tool.ruff.lint]
ignore = ["E402"]
[tool.uv]
python-preference = "system"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff",
"mypy<1.15",
]
[tool.mypy]
ignore_missing_imports = true