File: setup.py

package info (click to toggle)
python-extended-threading 0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 124 kB
  • ctags: 139
  • sloc: python: 867; makefile: 32
file content (13 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env python

from distutils.core import setup

setup(
    name         = "extended_threading",
    description  = "Extension of the python threading api",
    author       = "S James S Stapleton",
    author_email = "sjss@var-dev.net",
    url          = "http://www.var-dev.net/programming/python/extended_threading/",
    version      = "0.2",
    packages     = ["extended_threading"]
    )