From d6998b8970b097ba6b6e56cf4c9f546030462ca5 Mon Sep 17 00:00:00 2001 From: Christoph Harmel <christoph.harmel@unibas.ch> Date: Fri, 9 Dec 2022 13:45:42 +0100 Subject: [PATCH] fix: setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3166f58..8a94d0d 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ from setuptools import setup, find_packages - +from pathlib import Path 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