From c7a49415d0ba1e3a1839ca83dbfb2cb9c62ad5fe Mon Sep 17 00:00:00 2001 From: PatrickAlphaC Date: Sun, 20 Dec 2020 21:34:35 -0500 Subject: [PATCH] updated for correct readme --- docs/conf.py | 4 ++-- setup.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 6ca3ac0..5397807 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = u'2.3.0' +version = u'2.3.1' # The full version, including alpha/beta/rc tags. -release = u'2.3.0' +release = u'2.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 53f0844..68ea95c 100644 --- a/setup.py +++ b/setup.py @@ -4,20 +4,20 @@ here = path.abspath(path.dirname(__file__)) try: - with open(path.join(here, 'README.rst'), encoding='utf-8') as f: - long_description = f.read() + with open("README.md", "r") as fh: + long_description = fh.read() except IOError: long_description = 'Python module to get stock data from the Alpha Vantage Api' setup( name='alpha_vantage', - version='2.3.0', + version='2.3.1', author='Romel J. Torres', 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, + long_description_content_type="text/markdown", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',