Skip to content
Snippets Groups Projects
Select Git revision
  • 073bb17e0b3251c7e786414dbb39c655b8e713ee
  • mui5-tetras-main-stable default protected
  • mui5-tetras-main-old-stable
  • preprod protected
  • 75-dernieres-ameliorations-avant-workshop-du-7-02
  • wip-fix-xywh
  • wip-positionement-annot
  • wip-surface-transformer
  • uploads-file
  • 69-la-video-demare-quand-on-fait-glisser-le-slider-et-le-clic-creer-un-decalage-entre-le-player
  • 61-recettage-des-outils-d-annotation
  • gestion_multiple_ouverture_pannel_annotation
  • autorisation_un_pannel_annotation
  • autorisation_un_pannel_edition_annotation
  • récupération_temps_video
  • save-shapes-and-position
  • fix-error-create-annotation-pannel
  • time-saving-on-annotation
  • tetras-main protected
  • fix-poc-mirador
  • tetras-antho-test
21 results

jest.config.js

Blame
  • setup.py 716 B
    from setuptools import setup, find_packages
    from os import path
    
    here = path.abspath(path.dirname(__file__))
    
    with open(path.join(here, 'Readme.md'), encoding='utf-8') as f:
        long_description = f.read()
    
    
    
    setup(
        name="tenet",
        url="https://gitlab.tetras-libre.fr/tetras-mars/tenet",
        version="0.5.0",
        license="Gpl v3+",
        author="Tetras Libre",
        author_email="Contact@Tetras-Libre.fr",
        description="Tool for Extraction using Net Extension by (semantic) Transduction",
        long_description=long_description,
        packages=find_packages(exclude=('tests', 'docs'))
        install_requires=["rdflib>=6.2.0", 
                          "sparqlwrapper>=2.0.0", 
                          "lxml>=4.8.0"]
    )