-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 847 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
from setuptools import setup
setup(name='heig',
version='1.2.0',
description='Highly Efficient Imaging Genetics (HEIG)',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/Zhiwen-Owen-Jiang/heig',
author='Zhiwen Jiang',
author_email='[email protected]',
license='GPLv3',
packages=['heig'],
scripts=['heig.py'],
python_requires=">=3.11",
install_requires=[
'numpy==1.26.4',
'pandas==2.2.2',
'nibabel==5.2.1',
'scipy==1.11.4',
'scikit-learn==1.4.2',
'bitarray==2.9.2',
'h5py==3.11.0',
'numexpr==2.10.0',
'tqdm==4.66.4',
'pyarrow==17.0.0',
'filelock==3.15.4',
'hail==0.2.130'
])