forked from nighres/nighres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 997 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open('README.rst') as f:
long_description = f.read()
setup(
name='nighres',
version='1.0.0b4',
description='Processing tools for high-resolution neuroimaging',
long_description=long_description,
url='https://nighres.readthedocs.io/',
author='Julia M Huntenburg, Pierre-Louis Bazin, Chris Steele',
author_email='[email protected]',
license='Apache License, 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
keywords='MRI high-resolution laminar',
packages=find_packages(),
include_package_data=True,
install_requires=['numpy', 'nibabel'],
)