Skip to content
Snippets Groups Projects
Commit ed7f3103 authored by Lukasz Pszenny's avatar Lukasz Pszenny
Browse files

Adding lambo to requirements

parent c14dfb84
Branches
No related merge requests found
Pipeline #10206 passed with stages
in 6 minutes and 37 seconds
"""Setup."""
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'])
REQUIREMENTS = [
'absl-py==0.9.0',
'allennlp==1.3.0',
......@@ -23,6 +30,7 @@ REQUIREMENTS = [
'tqdm==4.43.0',
'transformers==4.0.1',
'urllib3==1.25.11',
"lambo"
]
setup(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment