Skip to content

Commit

Permalink
0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
asyne committed Oct 11, 2017
1 parent 3b2bef5 commit 31224f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 31224f7

Please sign in to comment.