File size: 843 Bytes
c35dad1
 
 
7770fa3
c35dad1
e6420ff
84df7b7
c35dad1
 
beabbaa
7e25f52
3f6a5df
 
be27fc6
02fd505
3f6a5df
7e25f52
4719ce5
 
 
 
ec89667
 
 
 
 
 
 
be27fc6
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
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",
     ],
)