From b028980a79aa333994daa6f7d6f7478e8d4547e4 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 2 Jun 2023 12:50:28 +0200 Subject: [PATCH] fix: module import (#2) --- {src => reflect_client}/Client.py | 0 {src => reflect_client}/__init__.py | 0 setup.py | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename {src => reflect_client}/Client.py (100%) rename {src => reflect_client}/__init__.py (100%) diff --git a/src/Client.py b/reflect_client/Client.py similarity index 100% rename from src/Client.py rename to reflect_client/Client.py diff --git a/src/__init__.py b/reflect_client/__init__.py similarity index 100% rename from src/__init__.py rename to reflect_client/__init__.py diff --git a/setup.py b/setup.py index 2870a51..dbc869b 100644 --- a/setup.py +++ b/setup.py @@ -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"] ) \ No newline at end of file