-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
31 lines (30 loc) · 933 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="lungtumormask",
packages=find_packages(),
version='1.3.1',
author="Svein Ole M Sevle, Vemund Fredriksen, and André Pedersen",
url="https://github.com/VemundFredriksen/LungTumorMask",
license="MIT",
python_requires='>=3.8',
install_requires=[
'numpy<=1.23.2',
'monai<=0.8.1',
'lungmask@git+https://github.com/andreped/lungmask',
'nibabel',
'scikit-image>=0.19.3',
'torch>=1.10.2,<=1.11',
],
entry_points={
'console_scripts': [
'lungtumormask = lungtumormask.__main__:main'
]
},
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)