Skip to content

Commit 778eeb2

Browse files
committed
Remove non-ASCII character from README.md.
1 parent db93e33 commit 778eeb2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Qt5 comes with a huge number of widgets built-in, from simple text boxes to digital displays, vector graphics canvas and a full-blown web browser. While you can build perfectly functional applications with the built-in widgets, sometimes your applications will need a *more*.
44

5-
This repo contains a library of [custom Python Qt5 widgets](https://www.learnpyqt.com/widgets/) which are free to use in your own applications. Widgets are compatible with both PyQt5 and PySide2 (Qt for Python). Currently the repository includes
5+
This repo contains a library of [custom Python Qt5 widgets](https://www.learnpyqt.com/widgets/) which are free to use in your own applications. Widgets are compatible with both PyQt5 and PySide2 (Qt for Python). Currently the repository includes -
66

77
| Widgets | Library |
88
| :---: | :---: |

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
from setuptools import setup, find_packages
22

3-
version = '0.1'
3+
version = '0.11'
4+
5+
with open("README.md", "r") as fh:
6+
long_description = fh.read()
47

58
setup(
69
name='qtwidgets',
710
version=version,
8-
url='http://github.com/learnpyqt/python-qtwidgets',
911
author='Martin Fitzpatrick',
1012
author_email='martin.fitzpatrick@gmail.com',
1113
description='Custom widget library for PyQt5 and PySide2 (Qt for Python). Free to use in your own applications.',
14+
long_description=long_description,
15+
long_description_content_type="text/markdown",
16+
url='http://github.com/learnpyqt/python-qtwidgets',
1217
license='MIT',
1318
packages=find_packages(),
1419
include_package_data=True,

0 commit comments

Comments
 (0)