Skip to content

Commit

Permalink
Single line description only
Browse files Browse the repository at this point in the history
PyPi doesn't render markup properly, and anyway we have relative links
that won't resolve. Need to spend a bit more time on this.
  • Loading branch information
samuelhwilliams committed Mar 5, 2019
1 parent 3bb6f80 commit 5811203
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change log

### v0.10.4
* Fix PyPi project description.

### v0.10.3
* Fix a bug that prevented using Eel without Jinja templating.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='Eel',
version='0.10.3',
version='0.10.4',
author='Chris Knott',
author_email='[email protected]',
packages=['eel'],
Expand All @@ -13,7 +13,7 @@
install_requires=['bottle', 'bottle-websocket', 'future', 'whichcraft'],
python_requires='>=2.6',
description='For little HTML GUI applications, with easy Python/JS interop',
long_description=open('README.md', encoding='utf-8').read(),
long_description=open('README.md', encoding='utf-8').readlines()[2],
keywords=['gui', 'html', 'javascript', 'electron'],
homepage='https://github.com/ChrisKnott/Eel',
)

0 comments on commit 5811203

Please sign in to comment.