fixbot/setup.py
author Tero Marttila <terom@fixme.fi>
Thu, 04 Feb 2010 19:38:54 +0200
changeset 38 66a42168c80b
parent 21 aa6df8f9c44a
permissions -rw-r--r--
allow config .py's to process their own locals
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],
)