From cb38f73edecc9b80fc89dde03766a546d5e25629 Mon Sep 17 00:00:00 2001 From: David Strauss Date: Mon, 25 Jun 2012 23:02:40 -0700 Subject: Initial boilerplate work. Compiles without warnings. Untested. --- setup.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ba34a4b --- /dev/null +++ b/setup.py @@ -0,0 +1,9 @@ +from distutils.core import setup, Extension + +journald = Extension('journald', + sources = ['journald.c']) + +setup (name = 'journald', + version = '0.1', + description = 'Native interface to the journald facilities of systemd', + ext_modules = [journald]) -- cgit v1.2.1