Skip to content
Snippets Groups Projects
Select Git revision
  • 3175630b3d97a0dc806258b221ba6cf1f8a92fad
  • demo_ci_gitlab_pages default
  • demo_gitlab_ci
  • 5-images-in-annotations
  • 5-final-images
  • 5-chpk-images-in-annot
  • tetras-main protected
  • 5-rebase-images-in-annot
  • 5-wip-images-in-annot
  • tmp
  • 1-edit-annotations-on-videos
  • 5-old-images-in-annotations
  • old_demo_ci_gitlab_pages
  • images_annotations
  • wip
  • devsetup
  • wip-annot-video-ui
  • wip-annotations-on-videos
  • master
  • v0.4.0_react16
  • wip-debugging-annotations
21 results

index.js

Blame
  • Forked from IIIF / Mirador / Mirador annotations
    Source project has a limited visibility.
    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"]
    )