CoolFace
Apppublic

andreped/LungTumorMask

sourceHugging Facemitupdated 3y agoView on Hugging Face
3likes
setup.py32 linesDownload Raw Back to root
1from setuptools import setup, find_packages2 3setup(4    name="lungtumormask",5    packages=find_packages(),6    version='1.3.1',7    author="Svein Ole M Sevle, Vemund Fredriksen, and André Pedersen",8    url="https://github.com/VemundFredriksen/LungTumorMask",9    license="MIT",10    python_requires='>=3.8',11    install_requires=[12        'numpy<=1.23.2',13        'monai<=0.8.1',14        'lungmask@git+https://github.com/andreped/lungmask',15        'nibabel',16        'scikit-image>=0.19.3',17        'torch>=1.10.2,<=1.11',18    ],19    entry_points={20        'console_scripts': [21            'lungtumormask = lungtumormask.__main__:main'22        ]23    },24    classifiers=[25         "Programming Language :: Python :: 3.8",26         "Programming Language :: Python :: 3.9",27         "Programming Language :: Python :: 3.10",28         "License :: OSI Approved :: MIT License",29         "Operating System :: OS Independent",30     ],31)32