From 513ebb6512c356eb63ca1130f4778897d7d29419 Mon Sep 17 00:00:00 2001 From: luiztauffer Date: Mon, 2 Mar 2020 14:53:14 +0700 Subject: [PATCH] - upload yml file - fix jupyter-client version --- MANIFEST.in | 1 + setup.py | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..83b798372 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include *.yml diff --git a/setup.py b/setup.py index c896d03fe..4029c8a99 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='nwbn-conversion-tools', - version='0.3.0', + version='0.3.3', description='Convert data to nwb', long_description=long_description, long_description_content_type='text/markdown', @@ -20,9 +20,11 @@ author_email='ben.dichter@gmail.com', keywords='nwb', packages=find_packages(), + package_data={'': ['template_metafile.yml']}, + include_package_data=True, install_requires=[ 'pynwb', 'tqdm', 'natsort', 'numpy', 'scipy', 'bs4', - 'pandas', 'jupyter', 'matplotlib', 'h5py', 'pyyaml', + 'pandas', 'jupyter', 'matplotlib', 'h5py', 'pyyaml', 'jupyter-client==5.3.4', 'spikeextractors', 'spikesorters', 'spiketoolkit', 'herdingspikes', 'PySide2', 'nwbwidgets', 'psutil', 'voila' ],