-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 921 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
# Authors: Christian O'Reilly <[email protected]>;
# Scott Huberty <[email protected]>
# License: MIT
from setuptools import setup
if __name__ == "__main__":
hard_dependencies = ('numpy', 'mne', 'mne-bids','dash')
install_requires = list()
with open('requirements.txt', 'r') as fid:
for line in fid:
req = line.strip()
for hard_dep in hard_dependencies:
if req.startswith(hard_dep):
install_requires.append(req)
setup(
name='eeg-visualizer',
version="0.0.1",
description='EEG/MEG Remote Visualization tools built on mne-python with Dash',
python_requires='>=3.5',
author="Scott Huberty",
author_email='[email protected]',
url='https://github.com/scott-huberty/eeg-visualizer.git',
packages=['eeg-visualizer'],
install_requires=install_requires)