summaryrefslogtreecommitdiff
path: root/setup.py
blob: bd4402fa57a27538fb412442912e6b3a80eb4b2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup, Extension

cjournal = Extension('systemd/_journal',
                      libraries = ['systemd-journal'],
                      sources = ['systemd/_journal.c'])

setup (name = 'systemd',
       version = '0.1',
       description = 'Native interface to the facilities of systemd',
       author_email = 'david@davidstrauss.net',
       url = 'https://github.com/systemd/python-systemd',
       py_modules = ['systemd.journal'],
       ext_modules = [cjournal])