-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (44 loc) · 1.49 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
46
47
from setuptools import setup
with open('README.md') as fp:
LONG_DESCRIPTION = fp.read()
setup(
name='pynetstim',
maintainer = 'Ehsan Tadyaon',
maintainer_email = '[email protected]',
version='0.2-alpha',
description='brain network stimulation',
long_description = LONG_DESCRIPTION,
author='Ehsan Tadayon',
author_email='[email protected]',
license='MIT',
zip_safe=False,
packages=['pynetstim'],
url = 'https://github.com/EhsanTadayon/pynetstim',
download_url='https://github.com/EhsanTadayon/pynetstim/archive/v_0.2-alpha.tar.gz',
keywords = ['brain network','stimulation','imaging','fMRI','diffusion','TMS'],
install_requires=[
'numpy',
'nipype',
'mayavi',
'pysurfer',
'pandas',
'matplotlib',
'scipy',
'nibabel',
'mne',
'nilearn',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Operating System :: MacOS',
'Operating System :: Unix',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
)