forked from ContextLab/supereeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (32 loc) · 901 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
DESCRIPTION = 'Infer activity throughout the brain from a small(ish) number of electrodes using Gaussian process regression'
LICENSE = 'MIT'
setup(
name='supereeg',
version='0.2.2',
description=DESCRIPTION,
long_description=' ',
author='Contextual Dynamics Laboratory',
author_email='[email protected]',
url='https://www.context-lab.com',
license=LICENSE,
install_requires=[
'deepdish',
'scikit-learn>=0.18.1',
'pandas>=0.23.4',
'seaborn>=0.7.1',
'matplotlib>=2.2.0',
'scipy>=0.17.1',
'numpy>=1.10.4',
'nilearn>=0.4.1',
'nibabel',
'joblib',
'imageio',
'future',
'hypertools',
'six',
'scikit-image'
],
packages=find_packages(exclude=('tests', 'docs')),
)