-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (31 loc) · 808 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
29
30
31
32
import setuptools
setuptools.setup(
name="PyReliMRI",
version="2.1.0",
description="A package for computing reliability of MRI/fMRI images",
author="Michael Demidenko",
author_email="[email protected]",
url="https://github.com/demidenm/PyReliMRI",
license="MIT",
packages=setuptools.find_packages(),
install_requires=[
"numpy",
"pandas",
"pytest",
"nilearn",
"nibabel",
"scipy",
"seaborn",
"scikit-learn",
"hypothesis",
"matplotlib",
"joblib",
"statsmodels",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)