Skip to content

Commit

Permalink
Merge pull request #84 from aleivag/givingbackinstallrequires
Browse files Browse the repository at this point in the history
adding back the requirements to setup.py
  • Loading branch information
aleivag authored May 12, 2023
2 parents 961e61f + 9a1c3db commit 53662f0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pystemd"
version = "0.13.0"
version = "0.13.1"
readme = "README.md"
description="A systemd binding for python"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion pystemd/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

# during development this version is always at least "one up" the
# latest release.
__version__ = "0.13.0"
__version__ = "0.13.1"

sys.modules[__name__] = __version__ # type: ignore
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

setup(
name="pystemd",
version="0.13.0",
version="0.13.1",
author="Alvaro Leiva Geisse",
author_email="[email protected]",
packages=["pystemd", "pystemd.systemd1", "pystemd.machine1", "pystemd.DBus"],
Expand All @@ -73,4 +73,9 @@
str(Path(p).relative_to("pystemd")) for p in glob.glob("pystemd/**/*.pyi")
]
},
install_requires=[
"lxml",
"psutil",
],
description="A systemd binding for python",
)

0 comments on commit 53662f0

Please sign in to comment.