Skip to content

Commit

Permalink
updated for correct readme
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC committed Dec 21, 2020
1 parent 4395f2c commit c7a4941
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit c7a4941

Please sign in to comment.