We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bba0838 commit 6a8bfceCopy full SHA for 6a8bfce
MANIFEST.in
@@ -9,5 +9,6 @@ include tornado/test/static/robots.txt
9
include tornado/test/templates/utf8.html
10
include tornado/test/test.crt
11
include tornado/test/test.key
12
+include README.rst
13
include runtests.sh
14
global-exclude _auto2to3*
setup.py
@@ -27,6 +27,9 @@
27
28
version = "3.1.dev1"
29
30
+with open('README.rst') as f:
31
+ long_description = f.read()
32
+
33
distutils.core.setup(
34
name="tornado",
35
version=version,
@@ -64,5 +67,6 @@
64
67
'Programming Language :: Python :: Implementation :: CPython',
65
68
'Programming Language :: Python :: Implementation :: PyPy',
66
69
],
70
+ long_description=long_description,
71
**kwargs
72
)
0 commit comments