forked from frankkramer-lab/aucmedi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 2.31 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
from setuptools import setup
from setuptools import find_packages
with open("docs/README.PyPI.md", "r") as fh:
long_description = fh.read()
setup(
name='aucmedi',
version='0.9.0',
description='AUCMEDI - a framework for Automated Classification of Medical Images',
author='Dominik Müller',
author_email='[email protected]',
license='GPLv3',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://frankkramer-lab.github.io/aucmedi/',
project_urls={
"Bug Tracker": "https://github.com/frankkramer-lab/aucmedi/issues",
"Documentation": "https://frankkramer-lab.github.io/aucmedi/reference/",
"Source Code": "https://github.com/frankkramer-lab/aucmedi",
},
packages=find_packages(),
entry_points={
'console_scripts': ['aucmedi = aucmedi.automl.main:main'],
},
python_requires='>=3.9',
install_requires=['tensorflow>=2.14.0',
'numpy>=1.23.5',
'pillow>=10.2.0',
'albumentations>=1.3.0',
'pandas>=1.5.2',
'scikit-learn>=1.3.0',
'scikit-image>=0.21.0',
'lime>=0.2.0.1',
'pooch>=1.6.0',
'classification-models-3D>=1.0.10',
'vit-keras>=0.1.2',
'tensorflow-addons>=0.21.0',
'Keras-Applications==1.0.8',
'SimpleITK>=2.2.0',
'batchgenerators>=0.25',
'volumentations-aucmedi>=1.0.1',
'plotnine==0.12.4',
'pathos>=0.3.0'],
classifiers=["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Medical Science Apps."]
)