diff --git a/README.md b/README.md new file mode 100644 index 0000000..f6dcb6f --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# httpbin(1): HTTP Request & Response Service + + +A [Kenneth Reitz](http://kennethreitz.org/) Project. + +![ice cream](http://farm1.staticflickr.com/572/32514669683_4daf2ab7bc_k_d.jpg) + +See http://httpbin.org for more information. + +## Officially Deployed at: + +- http://httpbin.org +- https://httpbin.org +- http://eu.httpbin.org +- https://eu.httpbin.org + + +## SEE ALSO + +- http://httpbin.org +- https://www.hurl.it +- http://requestb.in +- http://python-requests.org \ No newline at end of file diff --git a/README.rst b/README.rst deleted file mode 100644 index 90161d0..0000000 --- a/README.rst +++ /dev/null @@ -1,15 +0,0 @@ -httpbin(1): HTTP Request & Response Service -=========================================== - -A `Kenneth Reitz `__ Project. - -.. image:: http://farm1.staticflickr.com/572/32514669683_4daf2ab7bc_k_d.jpg - -See http://httpbin.org for more information. - -SEE ALSO --------- - -- https://www.hurl.it -- http://requestb.in -- http://python-requests.org \ No newline at end of file diff --git a/setup.py b/setup.py index 7c70231..5542ad8 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from setuptools import setup, find_packages import os import io -long_description = io.open( - os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8').read() +# long_description = io.open( + # os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8').read() setup( name="httpbin", version="0.5.0", description="HTTP Request and Response Service", - long_description=long_description, + # long_description=long_description, # The project URL. url='https://github.com/Runscope/httpbin',