Skip to content
Snippets Groups Projects
Select Git revision
  • bcf9831d4a15badd9b0a8d002d535db9e88111db
  • main default protected
  • 3D_UNet
  • notebooksv1
  • scaleZYX_mean
  • notebooks
  • convert_tiff_folders
  • test
  • notebook_update
  • threshold-exploration
  • optimize_scaleZYXdask
  • layered_surface_segmentation
  • conv_zarr_tiff_folders
  • 3d_watershed
  • tr_val_te_splits
  • save_files_function
  • memmap_txrm
  • v0.4.1
  • v0.4.0
  • v0.3.9
  • v0.3.3
  • v0.3.2
  • v0.3.1
  • v0.3.0
  • v0.2.0
25 results

setup.py

Blame
  • user avatar
    Felipe Delestro Matos authored
    c0abf9ef
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.py 1.72 KiB
    from setuptools import setup, find_packages
    import os
    
    
    # Read the contents of your README file
    with open("README.md", "r", encoding="utf-8") as f:
        long_description = f.read()
    
    
    setup(
        name="qim3d",
        version="0.3.1",
        author="Felipe Delestro",
        author_email="fima@dtu.dk",
        description="QIM tools and user interfaces",
        long_description=long_description,
        long_description_content_type="text/markdown",
        url="https://lab.compute.dtu.dk/QIM/tools/qim3d",
        packages=find_packages(),
        include_package_data=True,
        entry_points = {
            'console_scripts': [
                'qim3d=qim3d.utils.cli:main'
            ]
        },
        classifiers=[
            "License :: OSI Approved :: MIT License",
            "Programming Language :: Python :: 3",
            "Development Status :: 4 - Beta",
            "Intended Audience :: Education",
            "Intended Audience :: Science/Research",
            "Natural Language :: English",
            "Operating System :: OS Independent",
            "Topic :: Scientific/Engineering :: Image Processing",
            "Topic :: Scientific/Engineering :: Visualization",
            "Topic :: Software Development :: User Interfaces",
        ],
        python_requires=">=3.10",
        install_requires=[
            "albumentations>=1.3.1",
            "gradio>=4.15.0",
            "h5py>=3.9.0",
            "localthickness>=0.1.2",
            "matplotlib>=3.8.0",
            "monai>=1.2.0",
            "numpy>=1.26.0",
            "outputformat>=0.1.3",
            "Pillow>=10.0.1",
            "plotly>=5.14.1",
            "scipy>=1.11.2",
            "seaborn>=0.12.2",
            "setuptools>=68.0.0",
            "tifffile>=2023.4.12",
            "torch>=2.0.1",
            "torchvision>=0.15.2",
            "torchinfo>=1.8.0",
            "tqdm>=4.65.0",
            "nibabel>=5.2.0"
        ],
    )