From 340ca52ab529632bd37c0a2643da0d1203756ab1 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Mon, 5 Jun 2023 14:26:03 +0200 Subject: [PATCH] fix: setup config (#4) --- requirements.txt | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index afb0aad..d0d5466 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ # the "install_requires" array should also be updated when changing this -validators \ No newline at end of file +validators +requests \ No newline at end of file diff --git a/setup.py b/setup.py index dbc869b..0fbd7dd 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ from setuptools import setup, find_packages setup( name = "reflect-client", - version = "1.0.1", + version = "1.1.1", description = "Python library for communicating with an API built with Reflect over HTTP or UNIX sockets", author = "Victor Westerlund", author_email = "victor.vesterlund@gmail.com", url = "https://github.com/victorwesterlund/reflect-client-python", packages = ["reflect_client"], # The requirement.txt file should also be updated when changing this - install_requires = ["validators"] + install_requires = ["validators", "requests"] ) \ No newline at end of file