LungTumorMask / setup.py
andreped's picture
torch==1.11 + deprecated Python 3.6 support
beabbaa unverified
raw
history blame
839 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',
'monai<=0.3.0',
'lungmask@git+https://github.com/andreped/lungmask',
'nibabel',
'torch==1.11',
],
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",
],
)