LungTumorMask / setup.py
andreped's picture
monai<=0.8.1
3f6a5df unverified
raw
history blame
843 Bytes
from setuptools import setup, find_packages
setup(
name="lungtumormask",
packages=find_packages(),
version='1.1.1',
author="Svein Ole M Sevle, Vemund Fredriksen, and André Pedersen",
url="https://github.com/VemundFredriksen/LungTumorMask",
license="MIT",
python_requires='>=3.7',
install_requires=[
'numpy<=1.19.0',
'monai<=0.8.1',
'lungmask@git+https://github.com/andreped/lungmask',
'nibabel',
'torch==1.10.2',
],
entry_points={
'console_scripts': [
'lungtumormask = lungtumormask.__main__:main'
]
},
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)