-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (28 loc) · 955 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
BASE_REQUIREMENTS = ["nipype@git+https://github.com/GalBenZvi/nipype@patch-1#egg"
"=nipype",
"nibabel",
"numpy",
"scikit-image",
"mrproc@git+https://github.com/alexpron/mrproc",
]
DEV_REQUIREMENTS = ["black", "flake8", "pytest", "pytest-cov", "codecov"]
setup(
name="sctva",
version="0.0.0",
packages=find_packages(),
author="Alexandre Pron",
description="Structural Connectivity of Temporal Voice Areas",
url="https://github.com/alexpron/sctva",
license="MIT",
python_requires=">=3.6", # enforce Python 3.6 as minimum
install_requires=BASE_REQUIREMENTS,
extras_require={"dev": DEV_REQUIREMENTS},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
],
)