Image Segmentation
medical
biology
File size: 962 Bytes
1b052a1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import find_packages, setup

with open("README.md", "r") as fh:
    long_description = fh.read()

setup(
    name="vascx_models",
    # using versioneer for versioning using git tags
    # https://github.com/python-versioneer/python-versioneer/blob/master/INSTALL.md
    # version=versioneer.get_version(),
    # cmdclass=versioneer.get_cmdclass(),
    author="Jose Vargas",
    author_email="[email protected]",
    description="Retinal analysis toolbox for Python",
    long_description=long_description,
    long_description_content_type="text/markdown",
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,
    entry_points={
        "console_scripts": [
            "vascx = vascx_models.cli:cli",
        ]
    },
    install_requires=[
        "numpy == 1.*",
        "pandas == 2.*",
        "tqdm == 4.*",
        "Pillow == 9.*",
        "click==8.*",
    ],
    python_requires=">=3.10, <3.11",
)