Skip to content

Commit

Permalink
Modified the setup file with install requires.
Browse files Browse the repository at this point in the history
  • Loading branch information
ch-MEIJIE committed Nov 26, 2022
1 parent 5531fdc commit 4e33dc0
Showing 1 changed file with 37 additions and 4 deletions.
41 changes: 37 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,51 @@

setuptools.setup(
name="metabci",
version="0.1.1",
version="0.1.2",
author="TBC-TJU",
author_email="[email protected]",
description="A Library of Datasets, Algorithms, and Experiments workflow for Brain-Computer Interface",
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=[],
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 == 2020.1.2'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
)

0 comments on commit 4e33dc0

Please sign in to comment.