Image Segmentation
medical
biology
vascx / setup.py
Jose
new inference utilities
1b052a1
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",
)