-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
14 lines (14 loc) · 757 Bytes
/
Copy pathsetup.py
File metadata and controls
14 lines (14 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup
setup(
name = 'pyecog',
packages = ['pyecog', 'pyecog.ndf', 'pyecog.visualisation'], # this must be the same as the name above
version = '0.2.3',
description = 'For classifying single channel ECoG recordings (iEEG)',
author = 'Jonathan Cornford',
author_email = 'jonathan.cornford@gmail.com',
url = 'https://github.com/jcornford/pyecog', # use the URL to the github repo
download_url = 'https://github.com/jcornford/pyecog/tarball/0.2.3',
keywords = ['iEEG', 'ECoG'], # arbitrary keywords
install_requires=['numpy','scipy','scikit-learn','jupyter' ,'pandas', 'matplotlib', 'seaborn','h5py','xlrd', 'pyqtgraph'],
entry_points={ 'gui_scripts': ['pyecog = pyecog.visualisation.pyecog_main_gui:main',] }
)