From 7e7628e5b82349502b34707eff7aa05419628cab Mon Sep 17 00:00:00 2001 From: Miriam <47831805+miriamkw@users.noreply.github.com> Date: Wed, 8 Feb 2023 12:13:49 +0100 Subject: [PATCH] Update setup.py The setup was pointing to a directory that does not exist and hence created errors when trying to add the dependency (adding a release is also necessary, which is why I created a fork as a temporary solution) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 455cf67..905e48b 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ author=author, author_email=author_email, packages=[package_name], # add subpackages too - package_dir={package_name: 'src'}, + package_dir={package_name: 'data_science_tidepool_api_python'}, license='BSD 2-Clause', long_description=open('README.md').read(), python_requires='>=3.6',