forked from ZitongLu1996/NeuroRA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (38 loc) · 1.14 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
from setuptools import setup, find_packages
setup(
name='neurora',
version='1.1.6.9',
description=(
'A Python Toolbox for Multimodal Neural Data Representation Analysis'
),
long_description=open('README.md').read(),
author='Zitong Lu',
author_email='[email protected]',
maintainer='Zitong Lu',
maintainer_email='[email protected]',
license='MIT License',
packages=find_packages(),
platforms=["all"],
url='https://github.com/ZitongLu1996/NeuroRA',
install_requires=[
'numpy',
'scipy>=1.6.2',
'mne',
'nibabel',
'matplotlib',
'nilearn',
'scikit-learn',
'scikit-image'
],
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries'
],
package_data={'neurora': ['template/*.gz']},
)