summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorBen Carrillo <ben@futeisha.org>2014-07-07 11:31:34 -0500
committerBen Carrillo <ben@futeisha.org>2014-07-07 12:43:17 -0500
commit95a97e2e4c8c8d95c5a598e32af999d0296ec9cd (patch)
tree561b6e06ada119cb03243c1e905903192255d9b8 /debian/control
parent70637e1fb8197560293694aec45aca60c188e963 (diff)
Initial debianizationHEADmaster
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control20
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..83f4585
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: python-taskthread
+Maintainer: Ben Carrillo <ben@futeisha.org>
+Uploaders: Micah Anderson <micah@debian.org>
+Homepage: http://hpcloud.com
+Section: python
+Priority: optional
+Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9.0.0)
+Standards-Version: 3.9.5
+
+Package: python-taskthread
+Architecture: any
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Simple thread module to repetitively perform a task.
+ Python thread module to repeat an predefined task on a thread mulitple times.
+ .
+ A TaskThread is useful when a task needs to be repeated several times on
+ a separate thread. Normal usage of the threading.Thread class would call for
+ creation of a new thread each time the same task needs to be run. This module
+ allows for repetitive tasks to be run multiple times on the same thread by
+ having the thread wait until the task needs to be executed again.