We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d081c1 commit 641e78aCopy full SHA for 641e78a
setup.py
@@ -6,6 +6,9 @@
6
with open(_verfile) as _fh:
7
exec(_fh.read())
8
9
+with open('README.rst') as _fh:
10
+ _long_description = _fh.read()
11
+
12
setup(
13
name='openslide-python',
14
version=__version__,
@@ -25,7 +28,7 @@
25
28
maintainer='OpenSlide project',
26
29
maintainer_email='[email protected]',
27
30
description='Python interface to OpenSlide',
- long_description=open('README.rst').read(),
31
+ long_description=_long_description,
32
license='GNU Lesser General Public License, version 2.1',
33
keywords='openslide whole-slide image virtual slide library',
34
url='http://openslide.org/',
0 commit comments