Skip to content

Commit 53662f0

Browse files
authored
Merge pull request #84 from aleivag/givingbackinstallrequires
adding back the requirements to setup.py
2 parents 961e61f + 9a1c3db commit 53662f0

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pystemd"
7-
version = "0.13.0"
7+
version = "0.13.1"
88
readme = "README.md"
99
description="A systemd binding for python"
1010
dependencies = [

pystemd/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
# during development this version is always at least "one up" the
1212
# latest release.
13-
__version__ = "0.13.0"
13+
__version__ = "0.13.1"
1414

1515
sys.modules[__name__] = __version__ # type: ignore

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
setup(
6565
name="pystemd",
66-
version="0.13.0",
66+
version="0.13.1",
6767
author="Alvaro Leiva Geisse",
6868
author_email="aleivag@gmail.com",
6969
packages=["pystemd", "pystemd.systemd1", "pystemd.machine1", "pystemd.DBus"],
@@ -73,4 +73,9 @@
7373
str(Path(p).relative_to("pystemd")) for p in glob.glob("pystemd/**/*.pyi")
7474
]
7575
},
76+
install_requires=[
77+
"lxml",
78+
"psutil",
79+
],
80+
description="A systemd binding for python",
7681
)

0 commit comments

Comments
 (0)