-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup-dev.py
More file actions
26 lines (21 loc) · 807 Bytes
/
setup-dev.py
File metadata and controls
26 lines (21 loc) · 807 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
# -*- coding: utf-8 -*-
from __future__ import division, print_function, absolute_import
import setuptools # required to allow for use of python setup.py develop, may also be important for cython/compiling if it is used
from distutils.core import setup
setup(
name="eegvis",
version="0.3.0",
description="""eeg visualization functions""",
author="""Chris Lee-Messer""",
url="https://github.com/eegml/eegvis",
# url="http://bitbucket.org/cleemesser/eegvis",
# download_url="http://bitbucket.org/cleemesser/eegvis/downloads",
classifiers=["Topic :: Science :: EEG"],
packages=["eegvis"],
install_requires = [
'xarray','ipywidgets >= 7.0', 'bokeh>=0.12.16', 'matplotlib',
'eeghdf'],
# package_data={}
# data_files=[],
# scripts = [],
)