-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4395f2c
commit c7a4941
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
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', | ||
|