We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28f9fc6 commit 1fdd7d7Copy full SHA for 1fdd7d7
1 file changed
setup.py
@@ -8,12 +8,17 @@
8
io.open('msal_extensions/__init__.py', encoding='utf_8_sig').read()
9
).group(1)
10
11
+try:
12
+ long_description = open('README.md').read()
13
+except OSError:
14
+ long_description = "README.md is not accessible on TRAVIS CI's Python 3.5"
15
+
16
setup(
17
name='msal-extensions',
18
version=__version__,
19
packages=find_packages(),
- long_description=open('README.md').read(),
- long_description_content_type="text/markdown",
20
+ long_description=long_description,
21
+ long_description_content_type="text/markdown",
22
classifiers=[
23
'Development Status :: 2 - Pre-Alpha',
24
],
0 commit comments