-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 loc) · 1015 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
36
37
from setuptools import find_packages, setup
setup(
name='BMI_IDAP',
packages=find_packages(),
version='0.1.0',
description="BMI interday analysis pipeline",
author='Rich Hakim',
license='MIT',
install_requires=['numpy==1.18.3',
'jupyterlab',
'opencv-python',
'imageio==2.9.0',
'matplotlib',
'scikit-learn',
'scikit-image',
'librosa',
'pyyaml',
'imageio-ffmpeg',
'tqdm',
'h5py==2.10.0',
'pynwb',
'ipywidgets',
'pytest',
'Pillow==7.2.0'
]
)
# from distutils.core import setup
# setup(
# name='BMI_IDAP',
# version='0.1.0',
# packages=['bmi_idap',],
# license='MIT',
# long_description=open('README.md').read(),
# )