forked from scot-dev/scot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (32 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup
from codecs import open
from scot import __version__ as ver
with open('README.md', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='scot',
version=ver,
description='EEG/MEG Source Connectivity Toolbox',
long_description=long_description,
url='https://github.com/scot-dev/scot',
author='SCoT Development Team',
author_email='scotdev@googlegroups.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
keywords='source connectivity EEG MEG ICA',
packages=['scot', 'scot.eegtopo', 'scot.external'],
package_data={'scot': ['scot.ini']}
)