forked from alexpron/mrproc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 852 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
BASE_REQUIREMENTS = ["nipype@git+https://github.com/GalBenZvi/nipype@patch-1#egg"
"=nipype"]
DEV_REQUIREMENTS = ["black", "flake8", "pytest", "pytest-cov", "codecov"]
setup(
name="mrproc",
version="0.0.0",
packages=find_packages(),
author="Alexandre Pron",
description="Diffusion Weighted MRI processing workflows",
url="https://github.com/alexpron/mrproc",
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",
],
)