From c7ac0a8f670271025df2bc5565e1f6b25e51bc0d Mon Sep 17 00:00:00 2001 From: "Emmanuel O. Adegbite" Date: Tue, 18 Jun 2024 23:54:03 +0100 Subject: [PATCH] update install_requires --- pyfcm/__meta__.py | 2 +- setup.py | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pyfcm/__meta__.py b/pyfcm/__meta__.py index 5202ac8..05c3676 100644 --- a/pyfcm/__meta__.py +++ b/pyfcm/__meta__.py @@ -2,7 +2,7 @@ __summary__ = "Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web)" __url__ = "https://github.com/olucurious/pyfcm" -__version__ = "2.0.0" +__version__ = "2.0.1" __author__ = "Emmanuel Adegbite" __email__ = "olucurious@gmail.com" diff --git a/setup.py b/setup.py index 553c4f2..5f0eff2 100644 --- a/setup.py +++ b/setup.py @@ -15,10 +15,7 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -install_requires = [ - "requests", - "urllib3>=1.26.0", -] +install_requires = ["requests", "urllib3>=1.26.0", "google-auth>=2.29.0"] tests_require = ["pytest"] # We can't get the values using `from pyfcm import __meta__`, because this would import