forked from NeurodataWithoutBorders/nwbwidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.56 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
author='Neurodata Without Border (NWB) developers',
author_email='[email protected]',
version='0.2.3',
classifiers=['Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Framework :: Jupyter',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description='This is nwbwidgets, widgets for viewing the contents of a '
'NWB-file in Jupyter Notebooks using ipywidgets.',
install_requires=['pynwb',
'ipympl',
'ipywidgets>=7.4',
'matplotlib',
'numpy',
'ipyvolume',
'ndx_grayscalevolume',
'plotly',
'scikit-image',
'tqdm>=4.36.0',
'ndx-icephys-meta>0.1.0'],
license='MIT',
keywords=['jupyter', 'hdf5', 'notebook', 'nwb'],
long_description=long_description,
long_description_content_type='text/markdown',
name='nwbwidgets',
packages=['nwbwidgets', 'nwbwidgets/utils', 'nwbwidgets/analysis'],
python_requires='>=2.7',
setup_requires=['setuptools>=38.6.0', 'setuptools_scm'],
url='https://github.com/NeurodataWithoutBorders/nwb-jupyter-widgets')