Select Git revision
test_metrics.py
setup.py 1.01 KiB
import subprocess
from setuptools import find_packages, setup
subprocess.call(['pip', 'install', '--no-deps', 'git+https://gitlab.clarin-pl.eu/syntactic-tools/lambo.git#egg=lambo'])
REQUIREMENTS = [
"absl-py~=1.4.0",
"base58~=2.1.1",
"cached-path~=1.3.3",
"conllu~=4.4.1",
"conllutils~=1.1.4",
"dill~=0.3.6",
"importlib-resources~=5.12.0",
"h5py~=3.9.0",
"overrides~=7.3.1",
"torch~=2.0.0",
"torchtext~=0.15.1",
"numpy~=1.24.1",
"pytorch-lightning~=2.0.01",
"requests~=2.28.2",
"tqdm~=4.64.1",
"urllib3~=1.26.14",
"filelock~=3.9.0",
"pytest~=7.2.2",
"transformers~=4.27.3",
"spacy~=3.3.1"
]
setup(
name="combo",
version="2.0.0",
author="Maja Jablonska",
author_email="maja.jablonska@ipipan.waw.pl",
install_requires=REQUIREMENTS,
packages=find_packages(exclude=['tests']),
license="GPL-3.0",
keywords="nlp natural-language-processing dependency-parsing",
entrypoints={'console_scripts': ['combo = combo.main:main']}
)