From 489ba06c44fa4d3134ada1e3fc265baf98158480 Mon Sep 17 00:00:00 2001 From: Jacobi Petrucciani Date: Tue, 25 Sep 2018 17:28:37 -0400 Subject: [PATCH] [Dep]: adding requests to the install requires --- pybugsnag/globals.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pybugsnag/globals.py b/pybugsnag/globals.py index ec41804..843a63a 100644 --- a/pybugsnag/globals.py +++ b/pybugsnag/globals.py @@ -3,7 +3,7 @@ """ -__version__ = "0.0.3" +__version__ = "0.0.4" LIBRARY = "pybugsnag" diff --git a/setup.py b/setup.py index 49f89fa..6af1bbf 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ download_url="https://github.com/jpetrucciani/{}.git".format(LIBRARY), license="LICENSE", packages=find_packages(), + install_requires=["requests"], classifiers=[ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5",