aboutsummaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorDaniele Tricoli <eriol@mornie.org>2012-02-05 07:06:58 +0000
committerDaniele Tricoli <eriol@mornie.org>2012-02-05 07:06:58 +0000
commitaeea290ace4250ceec53e55e682d965e214e6fb0 (patch)
tree33f5d8bbdc30577232c2c34f0797980acc2cb0bd /debian/control
downloadpython-urllib3-aeea290ace4250ceec53e55e682d965e214e6fb0.tar
python-urllib3-aeea290ace4250ceec53e55e682d965e214e6fb0.tar.gz
Initial import
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control29
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2494a63
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,29 @@
+Source: python-urllib3
+Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
+Uploaders: Daniele Tricoli <eriol@mornie.org>
+Section: python
+Priority: optional
+Build-Depends:
+ debhelper (>= 7),
+ python-all (>= 2.6.6-3),
+ python-setuptools (>= 0.6b3),
+Standards-Version: 3.9.2
+Homepage: http://urllib3.readthedocs.org
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-urllib3/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-urllib3/trunk/
+
+Package: python-urllib3
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Python HTTP library with thread-safe connection pooling, file post and more
+ urllib3 supports features left out of urllib and urllib2 libraries.
+ .
+ * Re-use the same socket connection for multiple requests (HTTPConnectionPool
+ and HTTPSConnectionPool) (with optional client-side certificate
+ verification).
+ * File posting (encode_multipart_formdata).
+ * Built-in redirection and retries (optional).
+ * Supports gzip and deflate decoding.
+ * Thread-safe and sanity-safe.
+ * Small and easy to understand codebase perfect for extending and
+ building upon.