-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.16 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.16 KB
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
from distutils.core import setup
with open('README.rst') as fp:
LONG_DESCRIPTION = fp.read()
setup(
name = 'neuroimagingtools',
packages = ['nitools'],
version = '1.1.5',
license='MIT',
description = 'Neuroimaging analysis tools',
author = 'Jörn Diedrichsen',
author_email = 'joern.diedrichsen@googlemail.com',
url = 'https://github.com/DiedrichsenLab/nitools',
download_url = 'https://github.com/DiedrichsenLab/nitools/archive/refs/tags/v1.1.5.tar.gz',
long_description=LONG_DESCRIPTION,
keywords = ['imaging analysis', 'nifti', 'gifti','cifti'],
install_requires=[
'numpy >= 1.20.1',
'matplotlib >= 3.4.3',
'nibabel >= 4.0.2',
'pandas >= 1.3.2'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
python_requires='>=3.6'
)