fixbot/setup.py
author Tero Marttila <terom@fixme.fi>
Fri, 05 Feb 2010 21:48:14 +0200
changeset 58 31a17b0b5159
parent 21 aa6df8f9c44a
permissions -rw-r--r--
remove concept of event_types, the event.type is now just sent as a string
from distutils.core import setup, Extension

_utmp = Extension('_utmp', sources=['_utmp.c'])

setup(
    name        = "FixBot",
    version     = "0.1",
    description = "IRC bot for sysadmin things",
    ext_modules = [_utmp],
)