From eff37033ec98f7cb82c4d44b6a34550b5447aa88 Mon Sep 17 00:00:00 2001 From: Jon Kolb Date: Mon, 6 Sep 2021 14:46:53 -0400 Subject: [PATCH] Fix installing package with git+https --- brightpearl/__init__.py | 0 setup.py | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 brightpearl/__init__.py diff --git a/brightpearl/__init__.py b/brightpearl/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index bfc9dd6..d2a9c3c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,8 @@ def read(fname): name='brightpearl', version=VERSION, - packages=find_packages(), + packages=find_packages(exclude=("examples",)), + install_requires=["requests"], url='https://github.com/demystify-systems/brightpearl-python', @@ -25,4 +26,4 @@ def read(fname): license='MIT', keywords=['brightpearl', 'api', 'client'], -) \ No newline at end of file +)