fix: module import (#2)

This commit is contained in:
Victor Westerlund 2023-06-02 12:50:28 +02:00 committed by GitHub
parent b13d4aa53a
commit b028980a79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View file

@ -2,12 +2,12 @@ from setuptools import setup, find_packages
setup(
name = "reflect-client",
version = "1.0.0",
version = "1.0.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 = find_packages(),
packages = ["reflect_client"],
# The requirement.txt file should also be updated when changing this
install_requires = ["validators"]
)