fix: setup config (#4)

This commit is contained in:
Victor Westerlund 2023-06-05 14:26:03 +02:00 committed by GitHub
parent 1a07c60448
commit 340ca52ab5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View file

@ -1,2 +1,3 @@
# the "install_requires" array should also be updated when changing this
validators
validators
requests

View file

@ -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"]
)