-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
66 lines (64 loc) · 2.7 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
58
59
60
61
62
63
64
65
66
from setuptools import setup, find_packages
setup(
name='falconz',
version='2.2.0',
author='Lalith Kumar Shiyam Sundar',
author_email='Lalith.shiyamsundar@meduniwien.ac.at',
description='FalconZ: A streamlined Python package for PET motion correction.',
python_requires='>=3.10',
long_description='FalconZ is a robust and comprehensive Python package that offers a simplified approach to PET ('
'Positron Emission Tomography) motion correction. The software is equipped to handle both head '
'and total-body scans, ensuring high-accuracy results in diverse settings. Built around the '
'potent greedy registration toolkit, FalconZ serves as an efficient engine for registration '
'tasks, providing precise alignment in PET imaging. The package has been designed with '
'user-friendliness in mind, streamlining the implementation process of motion correction. '
'Whether you are a researcher, healthcare professional, or an individual working with PET scans, '
'FalconZ provides a seamless solution to your needs. It integrates effortlessly into your '
'existing Python environment, and its straightforward usability makes it an indispensable tool '
'for accurate PET scan analysis.',
url='https://github.com/QIMP-Team/FALCON',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
],
keywords='PET motion correction, diffeomorphic imaging, image processing',
packages=find_packages(),
install_requires=[
'nibabel~=3.2.2',
'halo~=0.0.31',
'SimpleITK',
'pydicom~=2.2.2',
'argparse~=1.4.0',
'numpy~=1.25.2',
'mpire~=2.3.3',
'openpyxl~=3.0.9',
'matplotlib',
'pyfiglet~=0.8.post1',
'natsort~=8.1.0',
'pillow>=9.2.0',
'colorama~=0.4.6',
'rich',
'pandas',
'dicom2nifti~=2.4.8',
'requests',
'emoji',
'psutil',
'nilearn',
'scikit-image',
'dask',
'dask[distributed]'
],
entry_points={
'console_scripts': [
'falconz=falconz.falconz:main',
],
},
)