-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.92 KB
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
# SPDX-License-Identifier: LGPL-2.1-or-later
[project]
name = "systemd-python"
dynamic = ["version"]
description = "Python interface for libsystemd"
readme = "README.md"
license = { text = "LGPL-2.1-or-later" }
authors = [{ email = "david@davidstrauss.net" }]
maintainers = [
{ name = "systemd developers", email = "systemd-devel@lists.freedesktop.org" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: System :: Systems Administration",
]
keywords = ["systemd", "journal", "logging", "daemon"]
requires-python = ">=3.9"
dependencies = []
[project.urls]
Homepage = "https://github.com/systemd/python-systemd"
Repository = "https://github.com/systemd/python-systemd.git"
Issues = "https://github.com/systemd/python-systemd/issues"
Documentation = "https://www.freedesktop.org/software/systemd/python-systemd/"
[dependency-groups]
test = ["pytest", "pytest-cov"]
docs = ["sphinx"]
build = [
"meson>=1.8.2",
"twine>=4.0.2",
]
[build-system]
requires = ["meson-python"]
build-backend = "mesonpy"
[tool.coverage.run]
source = ["systemd"]
omit = ["systemd/test/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]
[tool.pytest.ini_options]
addopts = "--doctest-modules --doctest-glob=*.rst --ignore=setup.py"
norecursedirs = ".git build"