Skip to content
Snippets Groups Projects
Select Git revision
  • d520dc78be2b6c14246734629ec456ee3df7a857
  • master default protected
  • vertical_relations
  • lu_without_semantic_frames
  • hierarchy
  • additional-unification-filters
  • v0.1.1
  • v0.1.0
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
17 results

admin.py

Blame
  • 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']}
    )