From 7a8a8ad37d25ac32296f6eec9a2d73f06024adfc Mon Sep 17 00:00:00 2001 From: Steve Traylen Date: Sun, 7 Sep 2025 15:33:41 +0200 Subject: [PATCH] Consider cernops upstream Release 1.0.0 --- README.rst | 15 +++++++++------ pyproject.toml | 3 +++ setup.py | 8 ++++---- 3 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 pyproject.toml diff --git a/README.rst b/README.rst index bacfdc7..294ae39 100644 --- a/README.rst +++ b/README.rst @@ -2,13 +2,16 @@ collectd-systemd ================ -.. image:: https://travis-ci.org/mbachry/collectd-systemd.svg?branch=master - :alt: Build status - :target: https://travis-ci.org/mbachry/collectd-systemd +This module was originally hosted at + +https://github.com/mbachry/collectd-systemd + +but this has been unmaintained now for many years + +The module is now maintained at + +https://github.com/cernops/collectd-systemd -.. image:: https://coveralls.io/repos/github/mbachry/collectd-systemd/badge.svg?branch=master - :alt: Coverage - :target: https://coveralls.io/github/mbachry/collectd-systemd?branch=master A `collectd`_ plugin which checks if given `systemd`_ services are one of * state "running" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fed528d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py index 748056a..08c8b6f 100644 --- a/setup.py +++ b/setup.py @@ -14,10 +14,10 @@ def read(*parts): name='collectd_systemd', description='Collectd plugin to monitor systemd services', license='MIT', - url='https://github.com/mbachry/collectd-systemd/', - version='0.0.1', - author='Marcin Bachry', - author_email='hegel666@gmail.com', + url='https://github.com/cernops/collectd-systemd/', + version='1.0.0', + author='Steve Traylen', + author_email='steve.traylen@cern.ch', long_description=read("README.rst"), py_modules=['collectd_systemd'], zip_safe=True,