From 31224f7e60ee10ea44b4cf5763db97be874b1ff4 Mon Sep 17 00:00:00 2001 From: Evan Date: Wed, 11 Oct 2017 23:41:08 +0300 Subject: [PATCH] 0.6.0 release --- README.md | 5 +++-- setup.py | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e525ca4..881d59d 100644 --- a/README.md +++ b/README.md @@ -77,8 +77,9 @@ In this example [Page Domain API](https://chromedevtools.github.io/devtools-prot - [x] Domains support - [x] Methods support - [x] Events support -- [ ] Types support -- TBA – suggestions are welcome + +Under consideration: +- Asynchronous I/O support using **asyncio** ## Chrome Headless diff --git a/setup.py b/setup.py index 5ac6d8d..0550356 100644 --- a/setup.py +++ b/setup.py @@ -7,14 +7,15 @@ EXCLUDE_FROM_PACKAGES = ['examples', 'tests', 'tools', 'requirements'] try: - with open(path.join(ROOT_DIR, 'README.rst'), encoding='utf-8') as f: - long_description = f.read() + from tools.convert_markdown import md2rst + + long_description = md2rst() except: long_description = '' setup( name='cproto', - version='0.5', + version='0.6.0', description='Chrome Debugging Protocol client', long_description=long_description, url='https://github.com/asyne/cproto',