-
-
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.
Merge pull request #126 from ChrisKnott/shw-none-concat
Check if using templating before concat
- Loading branch information
Showing
3 changed files
with
11 additions
and
7 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
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.2', | ||
version='0.10.3', | ||
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').readlines()[1], | ||
long_description=open('README.md', encoding='utf-8').read(), | ||
keywords=['gui', 'html', 'javascript', 'electron'], | ||
homepage='https://github.com/ChrisKnott/Eel', | ||
) |