-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (31 loc) · 888 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
30
31
32
33
34
35
from setuptools import setup, find_packages
setup(
name='context_general_bci',
version='0.0.1',
url='https://github.com/joel99/context_general_bci',
author='Joel Ye',
author_email='[email protected]',
packages=find_packages(exclude=['scripts', 'crc_scripts', 'data']),
# py_modules=['context_general_bci'],
install_requires=[
'torch==1.13.1+cu117', # 2.0 onnx export doesn't work, install with --extra-index-url https://download.pytorch.org/whl/cu117
'seaborn',
'pandas',
'numpy',
'scipy',
'onnxruntime-gpu',
'pyrtma',
'hydra-core',
'yacs',
'pynwb',
'argparse',
'wandb',
'einops',
'pytorch-lightning==1.8.2', # APIs change by 2.0+
'scikit-learn',
'ordered-enum',
'mat73',
'dacite',
'gdown',
],
)