From 602db60425869599eea3a024128c27d1ad5799f1 Mon Sep 17 00:00:00 2001 From: Christoph Harmel <christoph.harmel@unibas.ch> Date: Fri, 9 Dec 2022 13:44:34 +0100 Subject: [PATCH] fix: setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f2dc8ee..3166f58 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ from setuptools import setup, find_packages +project_root_dir = Path(__file__).parent.resolve() with open(project_root_dir / "requirements.txt", "r", encoding="utf-8") as _file: INSTALL_REQUIRES = _file.read().splitlines() -- GitLab