Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/threadframe/setup.py
blob: df8f46de08696b5f59932962e61040ed115d4a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
from distutils.extension import Extension

setup(
    name        = 'threadframe',
    version     = '0.2',
    description = "Advanced thread debugging extension",
    long_description = "Obtaining tracebacks on other threads than the current thread",
    url         = 'http://www.majid.info/mylos/stories/2004/06/10/threadframe.html',
    maintainer  = 'Fazal Majid',
    maintainer_email = 'threadframe@majid.info',
    license     = 'Python',
    platforms   = [],
    keywords    = ['threading', 'thread'],

    ext_modules=[
        Extension('threadframe',
            ['threadframemodule.c'],
        ),
    ],
)