-
Notifications
You must be signed in to change notification settings - Fork 78
/
setup.py
57 lines (49 loc) · 1.57 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import sys
from setuptools import find_packages, setup
if sys.version_info < (3, 8):
sys.exit("Requires Python 3.8 or higher")
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license_ = f.read()
REQUIRED_PACKAGES = [
'pymia == 0.3.1',
'scikit-learn >= 0.23.2',
'pathos >= 0.2.6',
# 'pydensecrf >= 1.0rc3',
'sphinx >= 3.2.1',
'sphinx_rtd_theme >= 0.5.0',
]
TEST_PACKAGES = [
]
setup(
name='MIALab',
version='0.3.1',
description='medical image analysis laboratory',
long_description=readme,
author='Healthcare Imaging A.I.',
author_email='[email protected]',
url='https://github.com/ubern-mia/MIALab',
license=license_,
packages=find_packages(exclude=['test', 'docs']),
install_requires=REQUIRED_PACKAGES,
tests_require=REQUIRED_PACKAGES + TEST_PACKAGES,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries'
],
keywords=[
'medical image analysis',
'machine learning',
'neuro'
]
)