From 0551bdacb8e1c21b54235e3ebe94bcb575e2f11b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anna=20Hedstr=C3=B6m?= Date: Mon, 18 Mar 2024 22:50:57 +0100 Subject: [PATCH] try quick fix in setup.py --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6f34818..b1b76c0 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,10 @@ from setuptools import setup, find_packages with open('requirements.txt') as f: - required = f.read().splitlines() + required = [line.strip() for line in f.readlines() if "git+" not in line] + +# Fix to make @git work +required.append("Quantus @ git+https://github.com/understandable-machine-intelligence-lab/Quantus.git") # Define setup. setup(