From 21e4f6967413c197c1174902a42b9a050e0304aa Mon Sep 17 00:00:00 2001 From: Wenbo Yu Date: Wed, 28 Nov 2018 23:36:12 -0800 Subject: [PATCH] fix(security): upgrade requests (#14) --- requirements.txt | 2 +- setup.py | 23 ++++++++++++++++++++--- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4afac4f..5610e90 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -requests==2.11.0 +requests==2.20.1 diff --git a/setup.py b/setup.py index 3bebbda..4edb277 100644 --- a/setup.py +++ b/setup.py @@ -3,18 +3,35 @@ except ImportError: from distutils.core import setup +with open("README.md", "r") as fh: + long_description = fh.read() + setup( name='yahoo_earnings_calendar', packages=['yahoo_earnings_calendar'], install_requires=[ 'requests' ], - version='0.3.1', + version='0.4.0', description='Scrapes data from Yahoo! Finance earnings calendar', + long_description=long_description, + long_description_content_type="text/markdown", author='Wenbo Yu', author_email='wenboyu2@gmail.com', url='https://github.com/wenboyu2/yahoo-earnings-calendar', - download_url='https://github.com/wenboyu2/yahoo-earnings-calendar/tarball/0.3.1', keywords=['stock', 'earnings', 'yahoo', 'scrape', 'finance'], - classifiers=[], + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Intended Audience :: Financial and Insurance Industry', + 'Natural Language :: English', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + ], )