This should let pypi pick it up automatically on upload.
include tornado/test/templates/utf8.html
include tornado/test/test.crt
include tornado/test/test.key
+include README.rst
include runtests.sh
global-exclude _auto2to3*
\ No newline at end of file
version = "3.1.dev1"
+with open('README.rst') as f:
+ long_description = f.read()
+
distutils.core.setup(
name="tornado",
version=version,
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
+ long_description=long_description,
**kwargs
)