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