https://github.com/fabrylab/shear_flow_deformation_cytometer
Raw File
Tip revision: 2d35a697243c432cddd52e10d2e3c5121f922adf authored by Mojtaba on 20 April 2022, 07:50:46 UTC
fixed exclude dark areas in fluorescence evaluation
Tip revision: 2d35a69
setup.py
from setuptools import setup


setup(name='shear_flow_deformation_cytometer',
      version="0.1",
      packages=['shear_flow_deformation_cytometer'],
      description='Cell deformation under shear flow analysis package in python.',
      author='Richard Gerum',
      author_email='richard.gerum@fau.de',
      license='GPLv3',
      install_requires=[
            'numpy',
            'matplotlib',
            'scipy',
            'tqdm',
            'tensorflow >= 2.5.3',
            'tensorflow-addons == 0.12.1',
            'scikit-image>=0.17.2',
            'imageio',
            'tifffile',
            "opencv-python",
            'qtawesome>=1.0.0',
            'qimage2ndarray',
            "pandas",
            "h5py",
            "pint",
            "pint_pandas",
            "pyQt5"
      ],
)
back to top