Add python-eventlet 0.16.1
[packages/trusty/python-eventlet.git] / debian / control
1 Source: python-eventlet
2 Section: python
3 Priority: optional
4 Maintainer: Mirantis OpenStack Team <mos@mirantis.com>
5 Build-Depends: debhelper (>= 9),
6                python-all (>= 2.7.1),
7                python-setuptools,
8                python-sphinx (>= 1.0.7+dfsg)
9 Build-Depends-Indep: python-greenlet (>= 0.3.1-2.1),
10                      python-httplib2,
11                      python-mock,
12                      python-nose,
13                      python-openssl
14 Standards-Version: 3.9.5
15 Homepage: http://eventlet.net
16
17 Package: python-eventlet
18 Architecture: all
19 Depends: ${misc:Depends}, ${python:Depends}, ${sphinxdoc:Depends}
20 Description: concurrent networking library - Python 2.x
21  Eventlet allows you to change how you run your code, not how you write it.
22  .
23  It uses epoll or libevent for highly scalable non-blocking I/O.
24  Coroutines ensure that the developer uses a blocking style of programming
25  that is similar to threading, but provide the benefits of non-blocking I/O.
26  The event dispatch is implicit, which means you can easily use Eventlet from
27  the Python interpreter, or as a small part of a larger application.
28  .
29  It's easy to get started using Eventlet, and easy to convert existing
30  applications to use it. Start off by looking at examples, common design
31  patterns, and the list of the basic API primitives.
32  .
33  This package provides the Python 2.x module.