File: pyproject.toml

package info (click to toggle)
pystemd 0.13.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,296 kB
  • sloc: python: 1,431; sh: 17; makefile: 8
file content (60 lines) | stat: -rw-r--r-- 1,660 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=46.4.0", "wheel", "cython"]
build-backend = "setuptools.build_meta"

[project]
name = "pystemd"
version = "0.13.2"
readme = "README.md"
description="A systemd binding for python"
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.6",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Development Status :: 5 - Production/Stable",
    "Topic :: Utilities",
    "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
]
license = { text = "LGPL-2.1+" }
keywords = ["systemd", "linux", "dbus"]

[project.optional-dependencies]
# Used for runing tests
t = ["pytest", "pytest-cov"]
lint = [
    "black",
    "mypi",
    "isort",
]

[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.mypy]
strict = false
packages = ["pystemd"]

[tool.isort]
atomic = true
profile = "black"
line_length = 88
skip_gitignore = true