Skip to content

Commit c7692f2

Browse files
author
BoboTiG
committed
Remove icons for Pipy description
1 parent 1cb78a1 commit c7692f2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
from mss import __version__
44

55

6+
# Remove "Legend" and replace icons with text
7+
lines = open('README.rst').readlines()
8+
desc = ''.join(lines[:24] + lines[32:])\
9+
.replace('\:star:', 'Yes ')\
10+
.replace('\:star2:', 'yes ')\
11+
.replace('\:question:', '??? ')
12+
613
setup(
714
name='mss',
815
version=__version__,
@@ -18,7 +25,7 @@
1825
license='zlib/libpng',
1926
author_email='mickael@jmsinfo.co',
2027
description='An ultra fast cross-platform multiple screenshots module in pure python using ctypes.',
21-
long_description=open('README.rst').read(),
28+
long_description=desc,
2229
classifiers=[
2330
'Development Status :: 5 - Production/Stable',
2431
'Environment :: MacOS X',

0 commit comments

Comments
 (0)