-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·43 lines (41 loc) · 1.16 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
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# Get the long description from the README file
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='ecogvis',
version='1.2.2',
description='Timeseries visualizer for Electrocorticography (ECoG) signals stored in NWB files.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Luiz Tauffer and Ben Dichter',
email='ben.dichter@gmail.com',
url='https://github.com/catalystneuro/ecogVIS',
packages=find_packages(),
include_package_data=True,
install_requires=[
'PyQt5',
'matplotlib',
'cycler',
'scipy',
'numpy',
'h5py',
'pyqtgraph',
'pandas',
'pynwb==1.3.2',
'PyYAML',
'ndx-ecog',
'ndx-spectrum',
'ndx-survey-data',
'ndx-bipolar-scheme',
'tqdm',
'pyopengl',
'process_nwb',
'PyQtWebEngine',
'ndx-icephys-meta',
'ndx-hierarchical-behavioral-data'],
entry_points={
'console_scripts': ['ecogvis=ecogvis.ecogvis:cmd_line_shortcut'],
}
)