forked from CBICA/BrainMaGe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (34 loc) · 993 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
33
34
35
36
37
38
#!/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.1',
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',
'nibabel',
'pytorch-lightning==0.8.1'
],
scripts=['brain_mage_run', '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
)