-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 729 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 729 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
27
28
29
30
import setuptools
setuptools.setup(
name='Neurokit',
version='0.0.1-alpha',
author='Matteo Dora',
author_email='matteo.dora@ens.psl.eu',
description='Neurophysiological timeseries toolkit',
url='https://github.com/mattbit/neurokit',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
install_requires=[
'numpy',
'pandas==1.2.*',
'scipy',
'plotly',
'pyedflib',
'scikit-image',
'pywavelets',
'networkx',
'dateparser',
'unidecode',
'mne==0.22.*',
'h5py==3.2.*',
]
)