distutils.core.setup(
name="tornado",
- version="1.0",
+ version="1.1",
packages = ["tornado"],
ext_modules = extensions,
author="Facebook",
"""The Tornado web server and tools."""
-version = "1.0.1"
-version_info = (1, 0, 1)
+version = "1.1"
+version_info = (1, 1, 0)
--------
Download the most recent version of Tornado from GitHub:
-> [tornado-1.0.1.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.0.1.tar.gz)
+> [tornado-1.1.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.1.tar.gz)
You can also [browse the source](http://github.com/facebook/tornado) on GitHub. To install Tornado:
- tar xvzf tornado-1.0.1.tar.gz
- cd tornado-1.0.1
+ tar xvzf tornado-1.1.tar.gz
+ cd tornado-1.1
python setup.py build
sudo python setup.py install
<p>See the <a href="/documentation">Tornado documentation</a> for a detailed walkthrough of the framework.</p>
<h2>Download and install</h2>
- <p><b>Download:</b> <a href="http://github.com/downloads/facebook/tornado/tornado-1.0.1.tar.gz">tornado-1.0.1.tar.gz</a></p>
- <pre><code>tar xvzf tornado-1.0.1.tar.gz
-cd tornado-1.0.1
+ <p><b>Download:</b> <a href="http://github.com/downloads/facebook/tornado/tornado-1.1.tar.gz">tornado-1.1.tar.gz</a></p>
+ <pre><code>tar xvzf tornado-1.1.tar.gz
+cd tornado-1.1
python setup.py build
sudo python setup.py install</code></pre>
<p>The Tornado source code is <a href="http://github.com/facebook/tornado">hosted on GitHub</a>. On Python 2.6+, it is also possible to simply add the tornado directory to your <code>PYTHONPATH</code> instead of building with <code>setup.py</code>, since the standard library includes <code>epoll</code> support.</p>