forked from nipy/pbrain
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 853 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 853 Bytes
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
"""
python2.3 setup.py bdist_wininst --install-script=postinstall.py
"""
from distutils.core import setup
import sys,os
import glob
data = []
data.extend(glob.glob('gui/*.png'))
data.extend(glob.glob('gui/*.xpm'))
data.extend(glob.glob('gui/*.glade'))
data.extend(glob.glob('gui/*.gladep'))
setup(name="pbrain",
version= '0.8',
description = "Integrated EEG, CT and MRI analysis",
author = "John D. Hunter & Eli Albert",
author_email="ealbert@bsd.uchicago.edu",
long_description = """
These packages to allow you to analyize and visualize EEG data
either in a traditional chart based screen or spatially using
electrode locations
""",
packages=['eegview', 'loc3djr', 'pbrainlib'],
data_files=[('share/pbrain', data)],
platforms='any',
scripts=['postinstall.py'],
)