-
-
Notifications
You must be signed in to change notification settings - Fork 593
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
3bb6f80
commit 5811203
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
setup( | ||
name='Eel', | ||
version='0.10.3', | ||
version='0.10.4', | ||
author='Chris Knott', | ||
author_email='[email protected]', | ||
packages=['eel'], | ||
|
@@ -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', | ||
) |