From cdbd8791bb373797e1b527e822ced0d463d733f3 Mon Sep 17 00:00:00 2001 From: Lukasz Pszenny <lpszenny@hotmail.com> Date: Thu, 11 May 2023 13:19:10 +0200 Subject: [PATCH] Changing installation to directly from git --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index cabbf85..c7262c1 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,8 @@ import subprocess from setuptools import find_packages, setup -# Clone the lambo repository -subprocess.call(['git', 'clone', 'https://gitlab.clarin-pl.eu/syntactic-tools/lambo.git', '--depth', '1']) - # Install lambo using pip -subprocess.call(['pip', 'install', './lambo']) +subprocess.call(['pip', 'install', 'git+https://gitlab.clarin-pl.eu/syntactic-tools/lambo.git#egg=lambo']) REQUIREMENTS = [ 'absl-py==0.9.0', -- GitLab