setup.py 655 B

123456789101112131415161718192021
  1. from distutils.core import setup
  2. from distutils.extension import Extension
  3. setup(
  4. name = 'threadframe',
  5. version = '0.2',
  6. description = "Advanced thread debugging extension",
  7. long_description = "Obtaining tracebacks on other threads than the current thread",
  8. url = 'http://www.majid.info/mylos/stories/2004/06/10/threadframe.html',
  9. maintainer = 'Fazal Majid',
  10. maintainer_email = 'threadframe@majid.info',
  11. license = 'Python',
  12. platforms = [],
  13. keywords = ['threading', 'thread'],
  14. ext_modules=[
  15. Extension('threadframe',
  16. ['threadframemodule.c'],
  17. ),
  18. ],
  19. )