Add travis badge to README

This commit is contained in:
Yury Selivanov 2014-07-15 13:18:38 -04:00
parent 9868c780de
commit 9c3d3e6021
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
.. image:: https://travis-ci.org/1st1/greenio.svg?branch=master
:target: https://travis-ci.org/1st1/greenio
Support for greenlets in asyncio.
Requires asyncio, greenlet and Python 3.3 / 3.4.

View File

@ -2,7 +2,7 @@ from setuptools import setup
extra = {}
f = open('README', 'r')
f = open('README.rst', 'r')
try:
extra['long_description'] = f.read()
finally: