]> arthur.barton.de Git - bup.git/blob - lib/tornado/README
Always publish (l)utimes in helpers when available and fix type conversions.
[bup.git] / lib / tornado / README
1 Tornado
2 =======
3 Tornado is an open source version of the scalable, non-blocking web server
4 and and tools that power FriendFeed. Documentation and downloads are
5 available at http://www.tornadoweb.org/
6
7 Tornado is licensed under the Apache Licence, Version 2.0
8 (http://www.apache.org/licenses/LICENSE-2.0.html).
9
10 Installation
11 ============
12 To install:
13
14     python setup.py build
15     sudo python setup.py install
16
17 Tornado has been tested on Python 2.5 and 2.6. To use all of the features
18 of Tornado, you need to have PycURL and a JSON library like simplejson
19 installed.
20
21 On Mac OS X, you can install the packages with:
22
23     sudo easy_install setuptools pycurl==7.16.2.1 simplejson
24
25 On Ubuntu Linux, you can install the packages with:
26
27     sudo apt-get install python-pycurl python-simplejson