forked from m-lyon/dMRI-RCNN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (46 loc) · 1.48 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
#!/usr/bin/env python3
'''Use this to install module'''
import os
from setuptools import setup, find_namespace_packages
install_deps = [
'tensorflow>=2.6.0',
'numpy',
'einops',
'nibabel',
'tqdm',
]
extra_req = {'sh': ['dipy']}
scripts = [
'dmri_rcnn/bin/run_dmri_rcnn.py',
'dmri_rcnn/bin/dmri_rcnn_download_all_weights.py',
'dmri_rcnn/bin/dmri_sh_baseline.py',
]
version = '0.4.0'
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='dmri-rcnn',
version=version,
description='Diffusion MRI Recurrent CNN for Angular Super-resolution.',
author='Matthew Lyon',
author_email='[email protected]',
url='https://https://github.com/m-lyon/dMRI-RCNN',
download_url=f'https://https://github.com/m-lyon/dMRI-RCNN/archive/v{version}.tar.gz',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.8',
license='MIT License',
packages=find_namespace_packages(),
install_requires=install_deps,
extras_require=extra_req,
scripts=scripts,
classifiers=[
'Programming Language :: Python',
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows :: Windows 10'
],
include_package_data=True,
keywords=['ai', 'cv', 'computer-vision', 'mri', 'dmri', 'super-resolution', 'cnn']
)