From 6edaadeb084687b7fe4afe1ec886e3b588f0b3e7 Mon Sep 17 00:00:00 2001 From: David Strauss Date: Mon, 25 Jun 2012 23:15:28 -0700 Subject: Add systemd-journal library. --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index ba34a4b..69d345d 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,12 @@ from distutils.core import setup, Extension journald = Extension('journald', - sources = ['journald.c']) + libraries = ['systemd-journal'], + sources = ['journald.c']) setup (name = 'journald', version = '0.1', description = 'Native interface to the journald facilities of systemd', + author_email = 'david@davidstrauss.net', + url = 'https://github.com/davidstrauss/journald-python', ext_modules = [journald]) -- cgit v1.2.1