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