Skip to content

Commit

Permalink
updated for markdown readme
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC committed Dec 21, 2020
1 parent b904374 commit 4395f2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -4,8 +4,8 @@

here = path.abspath(path.dirname(__file__))
try:
with open("README.md", "r") as fh:
long_description = fh.read()
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
except IOError:
long_description = 'Python module to get stock data from the Alpha Vantage Api'

Expand All @@ -16,6 +16,7 @@
author_email='romel.torres@gmail.com',
license='MIT',
description='Python module to get stock data from the Alpha Vantage Api',
long_description_content_type="text/markdown",
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 4395f2c

Please sign in to comment.