forked from CompImg/LST-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 946 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
32
33
34
35
from setuptools import setup, find_packages
setup(
name='LST_AI',
version='1.1.0',
description='Lesion Segmentation Toolbox AI',
url='https://github.com/CompImg/LST-AI',
author='LST-AI Team',
author_email=[
],
keywords=['lesion_segmentation', 'ms', 'lst', 'ai'],
python_requires='>=3.8',
install_requires=[
'numpy<1.24.4',
'pillow',
'scipy>=1.9.0',
'scikit-image>=0.21.0',
'tensorflow>=2.13,<2.16',
'nibabel',
'requests'
],
scripts=['LST_AI/lst'],
license='MIT',
packages=find_packages(include=['LST_AI']),
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix'
],
)