Skip to content
Snippets Groups Projects
Select Git revision
  • 6929c9bc7472225ce312052c94e980bc5595483b
  • main default protected
  • dev protected
  • tclabby-main-patch-92350
  • tclabby-main-patch-26246
  • operon-struct-type
  • operon-struct-type-article
  • remove-duplicate-structure-Lamassu-Fam_PDDEXK
  • operon-struct-type-article-update
  • system-distribution-plot
  • update-article-auto-sections
  • genome-context-system
  • select-columns
  • mao
  • ftesson_abip2
  • ftesson_abia
  • ftesson_abij
  • ftesson_abiz
  • ftesson_abie
  • ftesson_abir
  • ftesson_abii
21 results

Navbar.vue

Blame
  • setup.py 671 B
    #!/usr/bin/env python
    
    from setuptools import setup, find_packages
    
    setup(
        name="nd2tif",
        version="0.3.0.dev0",
        description="Compress nd2 into multi-dimensional tiff",
        author="Andrey Aristov",
        author_email="aaristov@pasteur.fr",
        url="https://gitlab.pasteur.fr/aaristov/nd2shrink",
        install_requires=[
            "numpy",
            "scipy",
            # "opencv-python",
            "scikit-image",
            "pims_nd2",
            "nd2reader",
            "pytest",
            "tifffile",
            "tqdm",
            "pandas",
            "seaborn",
            "statannot",
            "click",
            "imreg-dft"
        ],
        python_requires=">=3.8",
        packages=find_packages(),
    )