Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.

Commit 5f62b06

Browse files
Merge pull request #209 from andriyor/master
Fix wrong arguments for URL to GitHub
2 parents f42ca61 + 5a0adbd commit 5f62b06

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Eel is a little Python library for making simple Electron-like offline HTML/JS G
66
77
Eel is designed to take the hassle out of writing short and simple GUI applications. If you are familiar with Python and web development, probably just jump to [this example](https://github.com/ChrisKnott/Eel/tree/master/examples/04%20-%20file_access) which picks random file names out of the given folder (something that is impossible from a browser).
88

9-
<p align="center"><img src="examples/04%20-%20file_access/Screenshot.png" ></p>
9+
<p align="center"><img src="https://raw.githubusercontent.com/samuelhwilliams/Eel/master/examples/04%20-%20file_access/Screenshot.png" ></p>
1010

1111
<!-- TOC -->
1212

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
from io import open
22
from setuptools import setup
33

4+
with open('README.md') as read_me:
5+
long_description = read_me.read()
6+
47
setup(
58
name='Eel',
69
version='0.11.0',
710
author='Chris Knott',
811
author_email='chrisknott@hotmail.co.uk',
12+
url='https://github.com/samuelhwilliams/Eel',
913
packages=['eel'],
1014
package_data={
1115
'eel': ['eel.js'],
1216
},
1317
install_requires=['bottle', 'bottle-websocket', 'future', 'whichcraft'],
1418
python_requires='>=2.6',
1519
description='For little HTML GUI applications, with easy Python/JS interop',
16-
long_description=open('README.md', encoding='utf-8').readlines()[2],
20+
long_description=long_description,
21+
long_description_content_type='text/markdown',
1722
keywords=['gui', 'html', 'javascript', 'electron'],
18-
homepage='https://github.com/ChrisKnott/Eel',
1923
)

0 commit comments

Comments
 (0)