-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·45 lines (41 loc) · 1.07 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sat May 30 01:05:59 2020
@author: siddhesh
"""
from setuptools import setup
import setuptools
setup(
name="BrainMaGe",
version="1.0.5-dev",
description="Skull stripping using multiple and single modalities",
url="https://github.com/CBICA/BrainMaGe",
python_requires=">=3.6",
author="Siddhesh Thakur",
author_email="[email protected]",
license="BSD-3-Clause",
zip_safe=False,
install_requires=[
"numpy",
"torch>=1.5.1",
"scikit-image==0.16.2",
"nibabel",
"pytorch-lightning==0.8.1",
"bids"
],
scripts=[
"brain_mage_run",
"brain_mage_single_run",
"brain_mage_single_run_multi_4",
"brain_mage_intensity_standardize",
],
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Operating System :: Unix",
],
packages=setuptools.find_packages(),
include_package_data=True,
)