forked from hyprland-community/hyprland-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 1.09 KB
/
pyproject.toml
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
40
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hyprland"
version = "0.2.54"
authors = [
{ name = "flicko", email = "flickerdroid211@gmail.com" },
{ name = "jan Apisu", email = "aspizu@protonmail.com" },
]
description = "An unofficial async python wrapper for Hyprland's IPC supposed to somewhat work like awesomewm api in lua"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
]
[project.urls]
"Homepage" = "https://github.com/hyprland-community/hyprland-py"
"Bug Tracker" = "https://github.com/hyprland-community/hyprland-py/issues"
[tool.black]
line-length = 128
[tool.pyright]
typeCheckingMode = "strict"
reportUnknownMemberType = false
reportUnknownArgumentType = false
[tool.ruff]
line-length = 128
exclude = ["hyprland/variables.py", "examples/", "tools/"]
select = ["ALL"]
ignore = ["D", "ANN", "COM", "A003", "TD001", "TD002", "S108"]
[tool.ruff.isort]
required-imports = ["from __future__ import annotations"]