setup.py
author terom@munkibari.lan
Sat, 20 Feb 2010 20:48:37 +0200
changeset 60 a5b4c60cdc5c
parent 21 fixbot/setup.py@aa6df8f9c44a
permissions -rw-r--r--
kill dead tap.py code, move setup.py (unused)
21
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
     1
from distutils.core import setup, Extension
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
     2
60
a5b4c60cdc5c kill dead tap.py code, move setup.py (unused)
terom@munkibari.lan
parents: 21
diff changeset
     3
_utmp = Extension('fixbot._utmp', sources=['fixbot/_utmp.c'])
21
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
     4
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
     5
setup(
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
     6
    name        = "FixBot",
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
     7
    version     = "0.1",
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
     8
    description = "IRC bot for sysadmin things",
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
     9
    ext_modules = [_utmp],
aa6df8f9c44a add initial code back under fixbot/, the git-convert somehow broke
terom@fixme.fi
parents:
diff changeset
    10
)