forked from TBC-TJU/MetaBCI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (54 loc) · 1.43 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
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r", errors="ignore", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="metabci",
version="0.1.2",
author="TBC-TJU",
author_email="[email protected]",
description="A Library of Datasets, Algorithms, \
and Experiments workflow for Brain-Computer Interface",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(),
install_requires=[
'setuptools',
'wheel',
'twine',
'flake8',
'mypy',
'coverage',
'mat73',
'tqdm>=4.32.0',
'torch>=1.7.1',
'numpy',
'mne>=0.21.1',
'pandas',
'py7zr',
'joblib',
'autograd',
'scipy',
'pymanopt==0.2.5',
'requests',
'requests[socks]',
'pytest',
'h5py',
'scikit_learn',
'sphinxcontrib-napoleon',
'skorch',
'pooch',
'pylsl',
'wxPython==4.1.1; \
sys_platform == \'darwin\' and python_version <= \'3.8\'',
'pyglet==1.5.27; \
sys_platform == \'darwin\' and python_version <= \'3.8\'',
'psychopy'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)