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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
[build-system]
requires = ["hatchling>=1.26.1"]
build-backend = "hatchling.build"
[project]
name = "py3status"
dynamic = ["version"]
description = "py3status: an extensible i3status wrapper written in python"
readme = "README.md"
license = "BSD-2-Clause"
requires-python = ">=3.9"
authors = [
{ name = "Ultrabug", email = "ultrabug@ultrabug.net" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"setuptools; python_version >= '3.12'"
]
[project.optional-dependencies]
dbus = [
"dbus-python==1.3.2",
"PyGObject==3.46.0",
]
udev = ["pyudev >= 0.21.0"]
[project.urls]
Download = "https://github.com/ultrabug/py3status/tags"
Homepage = "https://github.com/ultrabug/py3status"
[project.scripts]
py3status = "py3status:main"
py3-cmd = "py3status.command:send_command"
[tool.hatch.version]
path = "py3status/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/py3status",
]
[tool.hatch.envs.default.scripts]
all = [
"hatch run test:test",
"hatch run style:check",
]
[tool.hatch.envs.test]
dependencies = [
"pytest"
]
[tool.hatch.envs.test.scripts]
test = [
"pytest -xs",
]
[[tool.hatch.envs.test.matrix]]
python = ["py39", "py310", "py311", "py312", "py313"]
type = ["default"]
[tool.hatch.envs.style]
detached = true
dependencies = [
"black",
"isort",
"ruff",
]
[tool.hatch.envs.style.scripts]
check = [
"isort --check-only --diff py3status",
"black -q --check --diff py3status",
"ruff check py3status",
]
format = [
"isort -q py3status",
"black -q py3status",
]
[tool.black]
line-length = 100
target-version = ["py312"]
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 100
[tool.ruff]
line-length = 100
ignore = ["E501"]
[tool.hatch.envs.docs]
dependencies = [
"mkdocs-material>=9.4.5",
"Pillow>=3.4.2",
"fonttools==4.24.4",
]
|