-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (25 loc) · 994 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
# Authors: Christian O'Reilly <[email protected]>
# License: MIT
from setuptools import setup
if __name__ == "__main__":
hard_dependencies = ('numpy', 'scipy', 'mne', 'xarray', 'tqdm', 'pandas',
'matplotlib', 'nibabel', 'trimesh', 'open3d',
'pyrender', 'paramiko', 'pymatreader')
install_requires = []
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='acareeg',
version="0.0.1",
description='Code to work with EEG at ACAR.',
python_requires='>=3.5',
author="Christian O'Reilly",
author_email='[email protected]',
url='https://github.com/christian-oreilly/acareeg',
packages=['acareeg'],
install_requires=install_requires
)