-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
48 lines (46 loc) · 1.56 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
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='brain-pred-toolbox',
version='2.3.2',
long_description=long_description,
long_description_content_type='text/markdown',
description='The Brain Predictability toolbox (BPt) is a ' +
'Python based machine learning library designed to work with ' +
'a range of neuroimaging data. Warning: Not actively maintained ' +
'as of 11/30/22.',
url='http://github.com/sahahn/BPt',
author='Sage Hahn',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
'scikit-learn>=1.1.0,<1.1.4',
'numpy>=1.21,<1.24',
'scipy>=1.2,<2.0',
'pandas>=1.1.5,<1.6',
'matplotlib>=3.2.2,<3.7',
'seaborn>=0.9,<0.13',
'scikit-image>=0.16',
'tqdm>=4.51',
'nevergrad>=0.5.0,<0.6',
'Ipython',
'joblib>=1,<2',
'loky',
'threadpoolctl>=3'
],
extras_require={
'extra': ['lightgbm>=3.3.0',
'nilearn>=0.9',
'python-docx',
'mvlearn',
'imblearn',
'xgboost>=1.4',
'bp-neurotools'],
},
test_suite='pytest',
tests_require=['pytest', 'coverage'],
zip_safe=False)