-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.44 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='DissNet',
maintainer = 'Davide Momi',
maintainer_email = '[email protected]',
version='1.0-alpha',
description='brain network stimulation',
long_description = LONG_DESCRIPTION,
author='Daive Momi',
author_email='[email protected]',
twitter='https://twitter.com/DaveMomi',
website='https://davi1990.github.io/',
license='MIT',
zip_safe=False,
packages=['DissNet'],
url = 'https://github.com/Davi1990/DissNet',
keywords = ['brain network','dwi','imaging','fMRI','diffusion','structual'],
install_requires=[
'numpy',
'mayavi',
'pysurfer',
'pandas',
'matplotlib',
'nipype',
'mne',
'networkx',
'bct'
],
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'
],
)