forked from systemd/pystemd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (57 loc) · 1.55 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
[build-system]
requires = ["setuptools>=46.4.0", "wheel", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "pystemd"
version = "0.15.3"
readme = "README.md"
description="A systemd binding for python"
requires-python=">=3.11"
dependencies = [
"lxml",
"psutil"
]
authors = [{name = "Alvaro Leiva Geisse", email = "aleivag@gmail.com"}]
maintainers = [
{name = "Alvaro Leiva Geisse", email = "aleivag@gmail.com"},
{name = "Davide Cavalca", email = "dcavalca@meta.com"},
{name = "Anita Zhang", email = "the.anitazha@gmail.com"}
]
classifiers = [
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
]
license = "LGPL-2.1+"
keywords = ["systemd", "linux", "dbus"]
[project.optional-dependencies]
# Used for runing tests
t = [
"pytest",
"pytest-cov",
# cstq and toml are used for testing version
"cstq",
"toml",
]
lint = [
"ruff",
"pyrefly",
"isort",
"pre-commit",
]
[project.urls]
changelog = "https://github.com/systemd/pystemd/blob/main/CHANGES.md"
homepage = "https://github.com/systemd/pystemd"
repository = "https://github.com/systemd/pystemd.git"
[tool.isort]
atomic = true
profile = "black"
line_length = 88
skip_gitignore = true