-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
60 lines (54 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[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 = "[email protected]"}]
maintainers = [
{name = "Alvaro Leiva Geisse", email = "[email protected]"},
{name = "Davide Cavalca", email = "[email protected]"},
{name = "Anita Zhang", email = "[email protected]"}
]
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