From 0a05b45ce0d04117601912be121ab42ad15faa43 Mon Sep 17 00:00:00 2001 From: wemoloh Date: Wed, 28 Mar 2018 17:27:26 -0600 Subject: [PATCH] added long description for pypi --- README.rst | 5 +++++ setup.py | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 README.rst diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..28cf6f6 --- /dev/null +++ b/README.rst @@ -0,0 +1,5 @@ +eider +===== + +This is the reference Python implementation of the `Eider RPC protocol +`_. diff --git a/setup.py b/setup.py index 8c0b0a0..710ff2a 100644 --- a/setup.py +++ b/setup.py @@ -10,12 +10,16 @@ exec(line) break +with open('README.rst') as fin: + readme = fin.read() + setup( name='eider', version=__version__, description=( 'An object-oriented, asynchronous, late-binding, web-first, polyglot ' 'RPC protocol'), + long_description=readme, url='https://github.com/eider-rpc/eider-py', author='Bart Robinson', author_email='bart@bartrobinson.com',